Skip to content

Commit bf37db6

Browse files
committed
Update to .NET 11
Update to .NET 11 with .NET SDK version 11.0.100-preview.1.26104.118. Signed-off-by: costellobot <102549341+costellobot@users.noreply.github.com>
1 parent ff72715 commit bf37db6

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

.vscode/launch.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,11 @@
66
"type": "coreclr",
77
"request": "launch",
88
"preLaunchTask": "build",
9-
"program": "${workspaceFolder}/src/DotNetBenchmarks/bin/Release/net10.0/DotNetBenchmarks.dll",
10-
"args": [ "--configuration", "Release" ],
9+
"program": "${workspaceFolder}/src/DotNetBenchmarks/bin/Release/net11.0/DotNetBenchmarks.dll",
10+
"args": [
11+
"--configuration",
12+
"Release"
13+
],
1114
"cwd": "${workspaceFolder}/src/DotNetBenchmarks",
1215
"stopAtEntry": false
1316
}

.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.10.0",
6+
"Microsoft.NetCore.Component.Runtime.11.0",
77
"Microsoft.NetCore.Component.SDK",
88
"Microsoft.VisualStudio.Component.Roslyn.Compiler",
99
"Microsoft.VisualStudio.Component.Roslyn.LanguageServices"

benchmark.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#Requires -Version 7
55

66
param(
7-
[Parameter(Mandatory = $false)][string] $Framework = "net10.0",
7+
[Parameter(Mandatory = $false)][string] $Framework = "net11.0",
88
[Parameter(Mandatory = $false)][string] $Job = ""
99
)
1010

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

src/DotNetBenchmarks/DotNetBenchmarks.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<NoWarn>$(NoWarn);IDE0058;SA1600</NoWarn>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net10.0</TargetFramework>
5+
<TargetFramework>net11.0</TargetFramework>
66
</PropertyGroup>
77
<ItemGroup>
88
<FrameworkReference Include="Microsoft.AspNetCore.App" />

0 commit comments

Comments
 (0)