Skip to content

Commit a210e6e

Browse files
committed
Update to .NET 10
1 parent c626b2c commit a210e6e

3 files changed

Lines changed: 12 additions & 12 deletions

File tree

.vscode/launch.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"request": "launch",
1111
"preLaunchTask": "build user-auth",
1212
// If you have changed target frameworks, make sure to update the program path.
13-
"program": "${workspaceFolder}/user-auth/GraphTutorial/bin/Debug/net9.0/GraphTutorial.dll",
13+
"program": "${workspaceFolder}/user-auth/GraphTutorial/bin/Debug/net10.0/GraphTutorial.dll",
1414
"args": [],
1515
"cwd": "${workspaceFolder}/user-auth/GraphTutorial",
1616
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
@@ -26,7 +26,7 @@
2626
"request": "launch",
2727
"preLaunchTask": "build app-auth",
2828
// If you have changed target frameworks, make sure to update the program path.
29-
"program": "${workspaceFolder}/app-auth/GraphAppOnlyTutorial/bin/Debug/net9.0/GraphAppOnlyTutorial.dll",
29+
"program": "${workspaceFolder}/app-auth/GraphAppOnlyTutorial/bin/Debug/net10.0/GraphAppOnlyTutorial.dll",
3030
"args": [],
3131
"cwd": "${workspaceFolder}/app-auth/GraphAppOnlyTutorial",
3232
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console

app-auth/GraphAppOnlyTutorial/GraphAppOnlyTutorial.csproj

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

3-
<!-- cSpell:ignore stylecop contentfiles buildtransitive -->
3+
<!-- cSpell:ignore stylecop contentfiles buildtransitive appsettings -->
44

55
<PropertyGroup>
66
<OutputType>Exe</OutputType>
7-
<TargetFramework>net9.0</TargetFramework>
7+
<TargetFramework>net10.0</TargetFramework>
88
<ImplicitUsings>enable</ImplicitUsings>
99
<Nullable>enable</Nullable>
1010
<UserSecretsId>2275df63-2eb2-47b9-a11f-710535686d4b</UserSecretsId>
@@ -23,9 +23,9 @@
2323

2424
<ItemGroup>
2525
<PackageReference Include="Azure.Identity" Version="1.17.1" />
26-
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="9.0.10" />
27-
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="9.0.10" />
28-
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="9.0.10" />
26+
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="10.0.0" />
27+
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="10.0.0" />
28+
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="10.0.0" />
2929
<PackageReference Include="Microsoft.Graph" Version="5.97.0" />
3030
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.556">
3131
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>

user-auth/GraphTutorial/GraphTutorial.csproj

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

3-
<!-- cSpell:ignore stylecop contentfiles buildtransitive -->
3+
<!-- cSpell:ignore stylecop contentfiles buildtransitive appsettings -->
44
<PropertyGroup>
55
<OutputType>Exe</OutputType>
6-
<TargetFramework>net9.0</TargetFramework>
6+
<TargetFramework>net10.0</TargetFramework>
77
<ImplicitUsings>enable</ImplicitUsings>
88
<Nullable>enable</Nullable>
99
<UserSecretsId>2275df63-2eb2-47b9-a11f-710535686d4b</UserSecretsId>
@@ -22,9 +22,9 @@
2222

2323
<ItemGroup>
2424
<PackageReference Include="Azure.Identity" Version="1.17.1" />
25-
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="9.0.10" />
26-
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="9.0.10" />
27-
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="9.0.10" />
25+
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="10.0.0" />
26+
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="10.0.0" />
27+
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="10.0.0" />
2828
<PackageReference Include="Microsoft.Graph" Version="5.97.0" />
2929
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.556">
3030
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>

0 commit comments

Comments
 (0)