dynamicexpresso / DynamicExpresso

C# expressions interpreter
http://dynamic-expresso.azurewebsites.net/
MIT License
2.01k stars 379 forks source link

.NET Framework 4.5.2 end of support is April 26, 2022 #224

Closed metoule closed 2 years ago

metoule commented 2 years ago

DynamicExpresso is configured for multi-targeting:

<TargetFrameworks>netstandard2.0;net461;net45</TargetFrameworks>

.NET 4.5 is reaching end of support on April 26, 2022:

image

That means that the lowest supported version of .NET Framework is now .NET 4.6.2, which is compatible with netstandard2.0.

Therefore, I suggest the following:

metoule commented 2 years ago

@davideicardi what do you think?

davideicardi commented 2 years ago

@metoule Fine for me! Good idea!

metoule commented 2 years ago

I think it will probably need a version bump to 3.0.0 though, because it's a breaking change. If needed, here's a SO question to use .NET4.5 with VS2022.