microsoft / ClearScript

A library for adding scripting to .NET applications. Supports V8 (Windows, Linux, macOS) and JScript/VBScript (Windows).
https://microsoft.github.io/ClearScript/
MIT License
1.74k stars 148 forks source link

Runtime support appears incorrect #586

Closed danpetitt closed 1 month ago

danpetitt commented 1 month ago

Support for .NET 5.0+, .NET Framework 4.5+, .NET Core 3.1, and .NET Standard 2.1.

I don't think this is correct, the library is net standard 2.1 which means it can't be used on .net framework (any version) as far as I am aware and nuget only has a version that is standard 2.1

ClearScriptLib commented 1 month ago

Hello @danpetitt,

The NuGet packages contain multiple builds for different frameworks and runtimes. For example, if you open the lib folder here, you'll see subfolders holding ClearScript.Core.dll builds for the following TFMs: net45, net471, net5.0, netcoreapp3.1, netstandard2.1, and uap10.0. Those should cover the targets and runtimes listed on the home page.

Cheers!

ClearScriptLib commented 1 month ago

Please reopen this issue if you have additional questions or comments on this topic.