Skip to content

Commit 55b15e3

Browse files
committed
build�: v0.2.0
1 parent 33b13c9 commit 55b15e3

1 file changed

Lines changed: 11 additions & 4 deletions

File tree

QueryKit/QueryKit.csproj

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
4+
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<PackageId>QueryKit</PackageId>
88
<PackageTags>QueryKit</PackageTags>
9-
<Version>0.1.1</Version>
9+
<Version>0.2.0</Version>
1010
<Authors>Paul DeVito</Authors>
1111
<Summary>QueryKit is a .NET library that makes it easier to query your data by providing a fluent and intuitive syntax for filtering and sorting.</Summary>
1212
<Description>QueryKit is a .NET library that makes it easier to query your data by providing a fluent and intuitive syntax for filtering and sorting.</Description>
@@ -16,13 +16,20 @@
1616
<PackageReadmeFile>README.md</PackageReadmeFile>
1717
<PublishRepositoryUrl>true</PublishRepositoryUrl>
1818
</PropertyGroup>
19-
19+
2020
<ItemGroup>
2121
<None Include="..\README.md" Pack="true" PackagePath="" Visible="False" />
2222
</ItemGroup>
2323

24-
<ItemGroup>
24+
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
25+
<PackageReference Include="Ardalis.SmartEnum" Version="2.1.0" />
26+
</ItemGroup>
27+
28+
<ItemGroup Condition="'$(TargetFramework)' == 'net7.0'">
2529
<PackageReference Include="Ardalis.SmartEnum" Version="7.0.0" />
30+
</ItemGroup>
31+
32+
<ItemGroup>
2633
<PackageReference Include="Sprache" Version="2.3.1" />
2734
</ItemGroup>
2835

0 commit comments

Comments
 (0)