Skip to content

Commit 3043219

Browse files
author
tsv2013
committed
Updated project to net8.0
1 parent f43e370 commit 3043219

File tree

2 files changed

+19
-41
lines changed

2 files changed

+19
-41
lines changed

.vscode/launch.json

Lines changed: 18 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,24 @@
11
{
2-
// Use IntelliSense to find out which attributes exist for C# debugging
3-
// Use hover for the description of the existing attributes
4-
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
5-
"version": "0.2.0",
62
"configurations": [
7-
{
8-
"name": ".NET Core Launch (web)",
9-
"type": "coreclr",
10-
"request": "launch",
11-
"preLaunchTask": "build",
12-
// If you have changed target frameworks, make sure to update the program path.
13-
"program": "${workspaceRoot}/bin/Debug/netcoreapp3.1/surveyjs-aspnet-mvc.dll",
14-
"args": [],
15-
"cwd": "${workspaceRoot}",
16-
"stopAtEntry": false,
17-
"internalConsoleOptions": "openOnSessionStart",
18-
"launchBrowser": {
19-
"enabled": true,
20-
"args": "${auto-detect-url}",
21-
"windows": {
22-
"command": "cmd.exe",
23-
"args": "/C start ${auto-detect-url}"
24-
},
25-
"osx": {
26-
"command": "open"
27-
},
28-
"linux": {
29-
"command": "xdg-open"
30-
}
31-
},
32-
"env": {
33-
"ASPNETCORE_ENVIRONMENT": "Development"
34-
},
35-
"sourceFileMap": {
36-
"/Views": "${workspaceRoot}/Views"
37-
}
3+
{
4+
"name": ".NET Core Launch (web)",
5+
"type": "coreclr",
6+
"request": "launch",
7+
"preLaunchTask": "build",
8+
"program": "${workspaceFolder}/bin/Debug/net8.0/surveyjs-aspnet-mvc.dll",
9+
"args": [],
10+
"cwd": "${workspaceFolder}",
11+
"stopAtEntry": false,
12+
"serverReadyAction": {
13+
"action": "openExternally",
14+
"pattern": "\\bNow listening on:\\s+(https?://\\S+)"
3815
},
39-
{
40-
"name": ".NET Core Attach",
41-
"type": "coreclr",
42-
"request": "attach",
43-
"processId": "${command:pickProcess}"
16+
"env": {
17+
"ASPNETCORE_ENVIRONMENT": "Development"
18+
},
19+
"sourceFileMap": {
20+
"/Views": "${workspaceFolder}/Views"
4421
}
22+
}
4523
]
4624
}

surveyjs-aspnet-mvc.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.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp3.1</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
</PropertyGroup>
66

77
<ItemGroup>

0 commit comments

Comments
 (0)