From 5b185e97873bf6c5704c1b72aa247a859e103d2e Mon Sep 17 00:00:00 2001 From: metoule Date: Wed, 9 Feb 2022 16:19:21 +0100 Subject: [PATCH] Change project target frameworks. (#225) Fix #224 --- README.md | 2 +- src/DynamicExpresso.Core/DynamicExpresso.Core.csproj | 4 ++-- test/DynamicExpresso.UnitTest/DynamicExpresso.UnitTest.csproj | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index f807f448..cabc3099 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [![NuGet version](https://badge.fury.io/nu/DynamicExpresso.Core.svg)](http://badge.fury.io/nu/DynamicExpresso.Core) [![.NET CI](https://github.com/dynamicexpresso/DynamicExpresso/actions/workflows/ci.yml/badge.svg)](https://github.com/dynamicexpresso/DynamicExpresso/actions/workflows/ci.yml) -Supported platforms: .NET Core 3.1, .NET Core 5.0 and above, .NET 4.5, .NET 4.6.1 +Supported platforms: .NET Core 3.1, .NET Core 5.0 and above, .NET 4.6.2 Dynamic Expresso is an interpreter for simple C# statements written in .NET Standard 2.0. Dynamic Expresso embeds its own parsing logic, really interprets C# statements by converting it to .NET lambda expressions or delegates. diff --git a/src/DynamicExpresso.Core/DynamicExpresso.Core.csproj b/src/DynamicExpresso.Core/DynamicExpresso.Core.csproj index cf02c53b..00435b7e 100644 --- a/src/DynamicExpresso.Core/DynamicExpresso.Core.csproj +++ b/src/DynamicExpresso.Core/DynamicExpresso.Core.csproj @@ -1,7 +1,7 @@ - + - netstandard2.0;net461;net45 + netstandard2.0 DynamicExpresso Davide Icardi diff --git a/test/DynamicExpresso.UnitTest/DynamicExpresso.UnitTest.csproj b/test/DynamicExpresso.UnitTest/DynamicExpresso.UnitTest.csproj index 1578f841..87b66229 100644 --- a/test/DynamicExpresso.UnitTest/DynamicExpresso.UnitTest.csproj +++ b/test/DynamicExpresso.UnitTest/DynamicExpresso.UnitTest.csproj @@ -1,7 +1,7 @@ - + - netcoreapp5.0;netcoreapp3.1;net461;net45 + netcoreapp5.0;netcoreapp3.1;net462 false