Update for .NET 8.

This commit is contained in:
Pete Chown
2024-06-23 20:15:04 +01:00
parent c14d75b930
commit 3a70349e98
6 changed files with 39 additions and 20 deletions

4
.vscode/launch.json vendored
View File

@@ -10,7 +10,7 @@
"request": "launch",
"preLaunchTask": "build",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/bin/Debug/netcoreapp2.1/kestrel.dll",
"program": "${workspaceFolder}/bin/Debug/net8.0/StandaloneKestrel.dll",
"args": [],
"cwd": "${workspaceFolder}",
// For more information about the 'console' field, see https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md#console-terminal-window
@@ -25,4 +25,4 @@
"processId": "${command:pickProcess}"
}
,]
}
}

4
.vscode/tasks.json vendored
View File

@@ -7,9 +7,9 @@
"type": "process",
"args": [
"build",
"${workspaceFolder}/kestrel.csproj"
"${workspaceFolder}/StandaloneKestrel.csproj"
],
"problemMatcher": "$msCompile"
}
]
}
}