Skip to content

Commit

Permalink
Change project target frameworks. (#225)
Browse files Browse the repository at this point in the history
Fix #224
  • Loading branch information
metoule authored Feb 9, 2022
1 parent 966a9f3 commit 5b185e9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions src/DynamicExpresso.Core/DynamicExpresso.Core.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0;net461;net45</TargetFrameworks>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<RootNamespace>DynamicExpresso</RootNamespace>

<Authors>Davide Icardi</Authors>
Expand Down
4 changes: 2 additions & 2 deletions test/DynamicExpresso.UnitTest/DynamicExpresso.UnitTest.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netcoreapp5.0;netcoreapp3.1;net461;net45</TargetFrameworks>
<TargetFrameworks>netcoreapp5.0;netcoreapp3.1;net462</TargetFrameworks>

<IsPackable>false</IsPackable>
</PropertyGroup>
Expand Down

0 comments on commit 5b185e9

Please sign in to comment.