Skip to content

Commit 3037965

Browse files
committed
v0.2.0
1 parent bcf528d commit 3037965

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

samples/MoviesAppSample/MoviesAppSample.csproj

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

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFrameworks>net8.0;net6.0;net462</TargetFrameworks>
5+
<TargetFrameworks>net9.0;net8.0;net6.0;net462</TargetFrameworks>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
</PropertyGroup>

src/NuExt.System.Data.SQLite.csproj

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

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.1;netstandard2.0;net8.0;net6.0;net462</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.1;netstandard2.0;net9.0;net8.0;net6.0;net462</TargetFrameworks>
55
<Nullable>enable</Nullable>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
@@ -14,7 +14,7 @@ System.Data.SQLite.SQLiteDbConnection
1414
System.Data.SQLite.SQLiteDbContext
1515
System.Data.SQLite.SQLiteDbConverter
1616
System.Data.SQLite.SQLiteDbTransaction</Description>
17-
<Version>0.1.4</Version>
17+
<Version>0.2.0</Version>
1818
<RootNamespace />
1919
<GenerateDocumentationFile>True</GenerateDocumentationFile>
2020
<NoWarn>$(NoWarn);1591</NoWarn>
@@ -28,7 +28,7 @@ System.Data.SQLite.SQLiteDbTransaction</Description>
2828
</ItemGroup>
2929

3030
<ItemGroup Condition="'$(UseNuExtPackages)' == 'true'">
31-
<PackageReference Include="NuExt.System.Data" Version="0.1.4" />
31+
<PackageReference Include="NuExt.System.Data" Version="0.2.0" />
3232
</ItemGroup>
3333

3434
<ItemGroup Condition="'$(UseNuExtPackages)' == 'false'">

tests/NuExt.System.Data.SQLite.Tests.csproj

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

33
<PropertyGroup>
4-
<TargetFrameworks>net8.0;net6.0;net462</TargetFrameworks>
4+
<TargetFrameworks>net9.0;net8.0;net6.0;net462</TargetFrameworks>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<IsPackable>false</IsPackable>
@@ -15,7 +15,7 @@
1515
</PackageReference>
1616
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
1717
<PackageReference Include="NUnit" Version="4.2.2" />
18-
<PackageReference Include="NUnit.Analyzers" Version="4.3.0">
18+
<PackageReference Include="NUnit.Analyzers" Version="4.4.0">
1919
<PrivateAssets>all</PrivateAssets>
2020
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2121
</PackageReference>
@@ -26,4 +26,8 @@
2626
<ProjectReference Include="..\src\NuExt.System.Data.SQLite.csproj" />
2727
</ItemGroup>
2828

29+
<ItemGroup>
30+
<Using Include="NUnit.Framework" />
31+
</ItemGroup>
32+
2933
</Project>

0 commit comments

Comments
 (0)