Skip to content

Commit d6936bc

Browse files
authored
Merge pull request #561 from VerdantApp/upgrade-to-net-10
Upgrade to .NET 10
2 parents 59671e4 + 601b9ea commit d6936bc

File tree

10 files changed

+33
-153
lines changed

10 files changed

+33
-153
lines changed

API.sln

Lines changed: 0 additions & 145 deletions
This file was deleted.

API.slnx

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<Solution>
2+
<Configurations>
3+
<Platform Name="Any CPU" />
4+
<Platform Name="x64" />
5+
<Platform Name="x86" />
6+
</Configurations>
7+
<Folder Name="/Solution Items/">
8+
<File Path=".editorconfig" />
9+
</Folder>
10+
<Folder Name="/src/">
11+
<Project Path="src/API.Core/API.Core.csproj" />
12+
<Project Path="src/API.Infrastructure/API.Infrastructure.csproj" />
13+
<Project Path="src/API.SharedKernel/API.SharedKernel.csproj" />
14+
<Project Path="src/API.Web/API.Web.csproj" />
15+
</Folder>
16+
<Folder Name="/tests/">
17+
<Project Path="tests/API.FunctionalTests/API.FunctionalTests.csproj">
18+
<BuildDependency Project="src/API.Web/API.Web.csproj" />
19+
</Project>
20+
<Project Path="tests/API.IntegrationTests/API.IntegrationTests.csproj">
21+
<BuildDependency Project="src/API.Infrastructure/API.Infrastructure.csproj" />
22+
</Project>
23+
<Project Path="tests/API.UnitTests/API.UnitTests.csproj" />
24+
</Folder>
25+
</Solution>

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "8.0.100",
3+
"version": "10.0.100",
44
"rollForward": "latestMajor"
55
}
66
}

src/API.Core/API.Core.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Sdk Name="Microsoft.Build.CentralPackageVersions" Version="2.1.3" />
33

44
<PropertyGroup>
5-
<TargetFramework>net9.0</TargetFramework>
5+
<TargetFramework>net10.0</TargetFramework>
66
<Nullable>enable</Nullable>
77
<ImplicitUsings>enable</ImplicitUsings>
88
<RootNamespace>Verdant.$(MSBuildProjectName.Replace(" ", "_"))</RootNamespace>

src/API.Infrastructure/API.Infrastructure.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Sdk Name="Microsoft.Build.CentralPackageVersions" Version="2.1.3" />
33

44
<PropertyGroup>
5-
<TargetFramework>net9.0</TargetFramework>
5+
<TargetFramework>net10.0</TargetFramework>
66
<Nullable>enable</Nullable>
77
<ImplicitUsings>enable</ImplicitUsings>
88
<RootNamespace>Verdant.$(MSBuildProjectName.Replace(" ", "_"))</RootNamespace>

src/API.SharedKernel/API.SharedKernel.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

33
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<Nullable>enable</Nullable>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<RootNamespace>Verdant.$(MSBuildProjectName.Replace(" ", "_"))</RootNamespace>

src/API.Web/API.Web.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Sdk Name="Microsoft.Build.CentralPackageVersions" Version="2.1.3" />
33

44
<PropertyGroup>
5-
<TargetFramework>net9.0</TargetFramework>
5+
<TargetFramework>net10.0</TargetFramework>
66
<PreserveCompilationContext>true</PreserveCompilationContext>
77
<OutputType>Exe</OutputType>
88
<WebProjectMode>true</WebProjectMode>

tests/API.FunctionalTests/API.FunctionalTests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Sdk Name="Microsoft.Build.CentralPackageVersions" Version="2.1.3" />
33

44
<PropertyGroup>
5-
<TargetFramework>net9.0</TargetFramework>
5+
<TargetFramework>net10.0</TargetFramework>
66
<Nullable>enable</Nullable>
77
<ImplicitUsings>enable</ImplicitUsings>
88
<RootNamespace>Verdant.$(MSBuildProjectName.Replace(" ", "_"))</RootNamespace>

tests/API.IntegrationTests/API.IntegrationTests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Sdk Name="Microsoft.Build.CentralPackageVersions" Version="2.1.3" />
33

44
<PropertyGroup>
5-
<TargetFramework>net9.0</TargetFramework>
5+
<TargetFramework>net10.0</TargetFramework>
66
<Nullable>enable</Nullable>
77
<ImplicitUsings>enable</ImplicitUsings>
88
<RootNamespace>Verdant.$(MSBuildProjectName.Replace(" ", "_"))</RootNamespace>

tests/API.UnitTests/API.UnitTests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Sdk Name="Microsoft.Build.CentralPackageVersions" Version="2.1.3" />
33

44
<PropertyGroup>
5-
<TargetFramework>net9.0</TargetFramework>
5+
<TargetFramework>net10.0</TargetFramework>
66
<PreserveCompilationContext>true</PreserveCompilationContext>
77
<Nullable>enable</Nullable>
88
<ImplicitUsings>enable</ImplicitUsings>

0 commit comments

Comments
 (0)