PowerShell / platyPS

Write PowerShell External Help in Markdown
MIT License
765 stars 149 forks source link

Fix the loader to work on PowerShell 7.0 too (.NET 3.1) #588

Closed daxian-dbw closed 2 years ago

daxian-dbw commented 2 years ago

PR Summary

Fix the loader to work on PowerShell 7.0 too (.NET 3.1). The check Environment.Version.Major > 4 was not accurate to reflect whether we are running in .NET Core, for example, it fails when running in PowerShell 7.0. Fix it by checking if the AssemblyLoadContext type is available at runtime.