File tree Expand file tree Collapse file tree 2 files changed +21
-5
lines changed
Dapper.CustomTypeHandlers
Dapper.CustomTypeHandlers.Tests
Dapper.CustomTypeHandlers Expand file tree Collapse file tree 2 files changed +21
-5
lines changed Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22
33 <PropertyGroup >
4- <TargetFrameworks >net7.0;net8.0</TargetFrameworks >
4+ <TargetFrameworks >net7.0;net8.0;net9.0 </TargetFrameworks >
55 </PropertyGroup >
66
77 <ItemGroup >
88 <PackageReference Include =" Dapper" Version =" 2.1.66" />
99 <PackageReference Include =" FluentAssertions" Version =" 8.0.1" />
10- <PackageReference Include =" Microsoft.Data.SQLite" Version =" 8.0.12" />
11- <PackageReference Include =" Microsoft.Extensions.DependencyInjection" Version =" 8.0.1" />
1210 <PackageReference Include =" nunit" Version =" 4.3.2" />
1311 <PackageReference Include =" NUnit3TestAdapter" Version =" 4.6.0" />
1412 <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.12.0" />
1513 </ItemGroup >
14+
15+ <ItemGroup Condition =" '$(TargetFramework)' == 'net7.0'" >
16+ <PackageReference Include =" Microsoft.Data.SQLite" Version =" 8.0.12" />
17+ <PackageReference Include =" Microsoft.Extensions.DependencyInjection" Version =" 8.0.1" />
18+ </ItemGroup >
19+
20+ <ItemGroup Condition =" '$(TargetFramework)' == 'net8.0' OR '$(TargetFramework)' == 'net9.0'" >
21+ <PackageReference Include =" Microsoft.Data.SQLite" Version =" 9.0.1" />
22+ <PackageReference Include =" Microsoft.Extensions.DependencyInjection" Version =" 9.0.1" />
23+ </ItemGroup >
1624
1725 <ItemGroup >
1826 <ProjectReference Include =" ..\Dapper.CustomTypeHandlers\Dapper.CustomTypeHandlers.csproj" />
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22
33 <PropertyGroup >
4- <TargetFrameworks >net7.0;net8.0</TargetFrameworks >
4+ <TargetFrameworks >net7.0;net8.0;net9.0 </TargetFrameworks >
55 <Title >Dapper.CustomTypeHandlers</Title >
66 <Description >Dapper custom type handlers to serialize/deserialize objects to Xml and Json.</Description >
77 <PackageTags >dapper orm xml json database sql customhandlers</PackageTags >
2323
2424 <ItemGroup >
2525 <PackageReference Include =" Dapper" Version =" 2.1.66" />
26+ </ItemGroup >
27+
28+ <ItemGroup Condition =" '$(TargetFramework)' == 'net7.0'" >
2629 <PackageReference Include =" Microsoft.Extensions.DependencyInjection.Abstractions" Version =" 8.0.2" />
27- <PackageReference Include =" System.Text.Json" Version =" 8.0.5" />
30+ <PackageReference Include =" System.Text.Json" Version =" 8.0.5" />
31+ </ItemGroup >
32+
33+ <ItemGroup Condition =" '$(TargetFramework)' == 'net8.0' OR '$(TargetFramework)' == 'net9.0'" >
34+ <PackageReference Include =" Microsoft.Extensions.DependencyInjection.Abstractions" Version =" 9.0.1" />
35+ <PackageReference Include =" System.Text.Json" Version =" 9.0.1" />
2836 </ItemGroup >
2937
3038 <ItemGroup >
You can’t perform that action at this time.
0 commit comments