Skip to content

Commit e514c41

Browse files
committed
Update to .NET 10
Update to .NET 10 with .NET SDK version 10.0.100-preview.1.25120.13.
1 parent 27cb7c9 commit e514c41

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"type": "coreclr",
77
"request": "launch",
88
"preLaunchTask": "build",
9-
"program": "${workspaceFolder}/src/TodoApp/bin/Debug/net9.0/TodoApp.dll",
9+
"program": "${workspaceFolder}/src/TodoApp/bin/Debug/net10.0/TodoApp.dll",
1010
"args": [],
1111
"cwd": "${workspaceFolder}/src/TodoApp",
1212
"stopAtEntry": false,

.vsconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"components": [
44
"Microsoft.VisualStudio.Component.CoreEditor",
55
"Microsoft.VisualStudio.Workload.CoreEditor",
6-
"Microsoft.NetCore.Component.Runtime.9.0",
6+
"Microsoft.NetCore.Component.Runtime.10.0",
77
"Microsoft.NetCore.Component.SDK",
88
"Microsoft.VisualStudio.Component.Roslyn.Compiler",
99
"Microsoft.VisualStudio.Component.Roslyn.LanguageServices",

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": "9.0.200",
3+
"version": "10.0.100-preview.1.25120.13",
44
"allowPrerelease": false,
55
"rollForward": "latestMajor"
66
}

src/TodoApp/TodoApp.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
<IsPackable>false</IsPackable>
55
<NoWarn>$(NoWarn);CA1050</NoWarn>
66
<RootNamespace>TodoApp</RootNamespace>
7-
<TargetFramework>net9.0</TargetFramework>
7+
<TargetFramework>net10.0</TargetFramework>
88
<TypeScriptCompileBlocked>true</TypeScriptCompileBlocked>
99
<TypeScriptToolsVersion>latest</TypeScriptToolsVersion>
1010
<UserSecretsId>TodoApp</UserSecretsId>
1111
</PropertyGroup>
1212
<ItemGroup>
1313
<PackageReference Include="AspNet.Security.OAuth.GitHub" Version="9.0.0" />
14-
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.2" />
15-
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.2" />
14+
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.0-preview.1.25120.3" />
15+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="10.0.0-preview.1.25081.1" />
1616
<PackageReference Include="Microsoft.TypeScript.MSBuild" Version="5.7.3" PrivateAssets="all" />
1717
</ItemGroup>
1818
<ItemGroup>

tests/TodoApp.Tests/TodoApp.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<NoWarn>$(NoWarn);CA1861</NoWarn>
55
<OutputType>Exe</OutputType>
66
<RootNamespace>TodoApp</RootNamespace>
7-
<TargetFramework>net9.0</TargetFramework>
7+
<TargetFramework>net10.0</TargetFramework>
88
</PropertyGroup>
99
<ItemGroup>
1010
<FrameworkReference Include="Microsoft.AspNetCore.App" />

0 commit comments

Comments
 (0)