Skip to content

Commit

Permalink
Added support for .NET 6 (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
mgernand authored Nov 24, 2023
1 parent b2d6fba commit 126361a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 15 deletions.
10 changes: 5 additions & 5 deletions src/ExpressionReflect/ExpressionReflect.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net7.0;net8.0</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<Nullable>disable</Nullable>
<ImplicitUsings>disable</ImplicitUsings>
Expand All @@ -11,9 +11,9 @@
<PropertyGroup>
<IncludeSymbols>false</IncludeSymbols>
<Copyright>Copyright © 2013-2023 Matthias Gernand. All rights reserved.</Copyright>
<Version>4.0.0</Version>
<AssemblyVersion>4.0.0</AssemblyVersion>
<FileVersion>4.0.0</FileVersion>
<Version>4.1.0</Version>
<AssemblyVersion>4.1.0</AssemblyVersion>
<FileVersion>4.1.0</FileVersion>
<Authors>Matthias Gernand</Authors>
<Description>A reflection-based expression evaluator.</Description>
<NeutralLanguage>en</NeutralLanguage>
Expand All @@ -39,7 +39,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="JetBrains.Annotations" Version="2023.3.0" />
<PackageReference Include="JetBrains.Annotations" Version="2023.3.0" />
</ItemGroup>

</Project>
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>net7.0;net8.0</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<Nullable>disable</Nullable>
<IsPackable>false</IsPackable>
</PropertyGroup>
Expand All @@ -15,14 +15,7 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net7.0' ">
<PackageReference Include="Fluxera.Linq.Expressions" Version="7.1.1" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net8.0' ">
<PackageReference Include="Fluxera.Linq.Expressions" Version="8.0.0" />
<PackageReference Include="Fluxera.Linq.Expressions" Version="8.0.1" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 126361a

Please # to comment.