Skip to content

Commit 4073694

Browse files
committed
Set Console and Test project target framework to net48
1 parent ca193d4 commit 4073694

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ You can use the SQLite CodeFirst in projects that target the following framework
4242
- .NET 4.7 (use net45)
4343
- .NET 4.7.1 (use net45)
4444
- .NET 4.7.2 (use net45)
45+
- .NET 4.8 (uses net45)
4546

4647
## How to use
4748
The functionality is exposed by using implementations of the `IDbInitializer<>` interface.

SQLite.CodeFirst.Console/SQLite.CodeFirst.Console.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
4-
<TargetFramework>net472</TargetFramework>
4+
<TargetFramework>net48</TargetFramework>
55
<AssemblyTitle>SQLite.CodeFirst</AssemblyTitle>
66
<Description>A console application which demonstrates how to use SQLite.CodeFirst.</Description>
77
<Version>1.0.0.0</Version>

SQLite.CodeFirst.Test/SQLite.CodeFirst.Test.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net472</TargetFramework>
3+
<TargetFramework>net48</TargetFramework>
44
<AssemblyTitle>SQLite.CodeFirst.Test</AssemblyTitle>
55
<Description>Contains the Unit Tests for the SQLite.CodeFirst Library.</Description>
66
<Version>1.0.0.0</Version>

0 commit comments

Comments
 (0)