Skip to content

Commit a9d937c

Browse files
konardclaude
andcommitted
Upgrade target framework from net6 to net8.0 and fix package compatibility
- Updated TargetFramework from net6 to net8.0 to resolve compatibility issues - Added Platform.Data.Doublets package reference with compatible version 0.17.2 - This resolves the NU1202 error where Platform.Data.Doublets.Sequences 0.5.2 requires net7.0 or higher target framework Addresses issue #42: The original request was to upgrade from netcoreapp3.0 to netcoreapp3.1, but the project has evolved and now needs a modern target framework to work with current dependencies. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 61bfbe8 commit a9d937c

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

Comparisons.SQLiteVSDoublets.csproj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net6</TargetFramework>
5+
<TargetFramework>net8.0</TargetFramework>
66
<Nullable>enable</Nullable>
77
</PropertyGroup>
88

@@ -13,6 +13,7 @@
1313
</ItemGroup>
1414

1515
<ItemGroup Condition="'$(Configuration)'=='Release'">
16+
<PackageReference Include="Platform.Data.Doublets" Version="0.17.2" />
1617
<PackageReference Include="Platform.Data.Doublets.Sequences" Version="0.5.2" />
1718
</ItemGroup>
1819

@@ -21,6 +22,7 @@
2122
</ItemGroup>
2223

2324
<ItemGroup Condition="'$(Configuration)'=='Debug' AND !Exists('..\Data.Doublets.Sequences\csharp\Platform.Data.Doublets.Sequences\Platform.Data.Doublets.Sequences.csproj')">
25+
<PackageReference Include="Platform.Data.Doublets" Version="0.17.2" />
2426
<PackageReference Include="Platform.Data.Doublets.Sequences" Version="0.5.2" />
2527
</ItemGroup>
2628

0 commit comments

Comments
 (0)