Skip to content

Commit c3992c2

Browse files
committed
upgrade to net9
1 parent 0dc2a4f commit c3992c2

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

SQLite.Net.Tests/SQLite.Net2.Tests.csproj

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

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55

66
<IsPackable>false</IsPackable>
77

@@ -11,13 +11,13 @@
1111
</PropertyGroup>
1212

1313
<ItemGroup>
14-
<PackageReference Include="nunit" Version="4.1.0" />
15-
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0">
14+
<PackageReference Include="nunit" Version="4.3.2" />
15+
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0">
1616
<PrivateAssets>all</PrivateAssets>
1717
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1818
</PackageReference>
19-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
20-
<PackageReference Include="SQLitePCLRaw.bundle_e_sqlite3" Version="2.1.8" />
19+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
20+
<PackageReference Include="SQLitePCLRaw.bundle_e_sqlite3" Version="2.1.10" />
2121
</ItemGroup>
2222

2323
<ItemGroup>

src/SQLite.Net/SQLite.Net2.csproj

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

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.1;net8.0</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.1;net8.0;net9.0</TargetFrameworks>
55
<AssemblyName>SQLite.Net2</AssemblyName>
66
<RootNamespace>SQLite.Net2</RootNamespace>
77

88
<DebugType>portable</DebugType>
99
<AssemblyProduct>SQLite.Net2</AssemblyProduct>
10-
<AssemblyCopyright>Copyright ©2024 Benjamin Mayrargue</AssemblyCopyright>
10+
<AssemblyCopyright>Copyright ©2025 Benjamin Mayrargue</AssemblyCopyright>
1111
<LangVersion>Latest</LangVersion>
1212
<Nullable>enable</Nullable>
1313
</PropertyGroup>
1414

1515
<!-- nuget configurable properties -->
1616
<PropertyGroup>
17-
<Version>2.1.0</Version>
17+
<Version>2.2.0</Version>
1818
<VersionSuffix></VersionSuffix>
1919
<DefineConstants>$(DefineConstants);</DefineConstants>
2020
</PropertyGroup>
@@ -25,8 +25,8 @@
2525
<PackageId>sqlite-net2</PackageId>
2626
<!-- PackageIcon>icon.png</PackageIcon -->
2727
<!--<PackageIconUrl>https://raw.githubusercontent.com/xamarin/Essentials/master/Assets/xamarin.essentials_128x128.png</PackageIconUrl>-->
28-
<Summary>A netstandard client library to access SQLite database files in a LINQ manner.</Summary>
29-
<PackageTags>sqlite, xamarin, android, ios, uwp, netstandard</PackageTags>
28+
<Summary>A client library to access SQLite database files in a LINQ manner.</Summary>
29+
<PackageTags>sqlite, maui, android, ios, windows</PackageTags>
3030
<Title>sqlite-net2 light ORM for SQLite</Title>
3131
<Description>sqlite-net2 allows applications to manage data in SQLite databases using Entity Framework like queries, but much lighter</Description>
3232
<Product>$(AssemblyName) ($(TargetFramework))</Product>
@@ -46,7 +46,7 @@
4646
</PropertyGroup>
4747

4848
<ItemGroup>
49-
<PackageReference Include="SQLitePCLRaw.core" Version="2.1.8" />
49+
<PackageReference Include="SQLitePCLRaw.core" Version="2.1.10" />
5050
<None Include="..\..\LICENSE.md" Pack="true" PackagePath="" />
5151
</ItemGroup>
5252

0 commit comments

Comments
 (0)