Skip to content

Commit 3bf3dda

Browse files
committed
Updated for .NET 10.
1 parent 73d1eda commit 3bf3dda

5 files changed

Lines changed: 5 additions & 8 deletions

File tree

.github/workflows/dotnetcore.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
- name: Setup .NET
1010
uses: actions/setup-dotnet@v4
1111
with:
12-
dotnet-version: 9.0.x
12+
dotnet-version: 10.0.x
1313
- name: Restore Dependencies
1414
run: dotnet restore
1515
# Debug and Release might be different due to conditional compilation, so validate both.

Example/Example.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-
<TargetFramework>net9.0</TargetFramework>
5+
<TargetFramework>net10.0</TargetFramework>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
<DebugType>embedded</DebugType>

SqlServerSimulator.Tests.EFCore/SqlServerSimulator.Tests.EFCore.csproj

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

33
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
5-
<LangVersion>13.0</LangVersion>
4+
<TargetFramework>net10.0</TargetFramework>
65
<Nullable>enable</Nullable>
76
<GenerateDocumentationFile>True</GenerateDocumentationFile>
87
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>

SqlServerSimulator.Tests/SqlServerSimulator.Tests.csproj

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

33
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
5-
<LangVersion>13.0</LangVersion>
4+
<TargetFramework>net10.0</TargetFramework>
65
<Nullable>enable</Nullable>
76
<GenerateDocumentationFile>True</GenerateDocumentationFile>
87
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>

SqlServerSimulator/SqlServerSimulator.csproj

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

33
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
5-
<LangVersion>13.0</LangVersion>
4+
<TargetFramework>net10.0</TargetFramework>
65
<Nullable>enable</Nullable>
76
<GenerateDocumentationFile>True</GenerateDocumentationFile>
87
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>

0 commit comments

Comments
 (0)