Skip to content

Commit f3d475c

Browse files
committed
[up] to .NET 8
1 parent e2d2cd4 commit f3d475c

File tree

4 files changed

+35
-35
lines changed

4 files changed

+35
-35
lines changed

.vscode/launch.json

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
{
22
"version": "0.2.0",
33
"configurations": [
4-
{
5-
"name": "TestServer Launch",
6-
"type": "coreclr",
7-
"request": "launch",
8-
"preLaunchTask": "Build",
9-
"program": "${workspaceFolder}/src/TestServer/bin/Debug/net6.0/TestServer.dll",
10-
"cwd": "${workspaceFolder}/src/TestServer/bin/Debug/net6.0/",
11-
"internalConsoleOptions": "openOnSessionStart",
12-
"env":
134
{
14-
"ASPNETCORE_ENVIRONMENT": "Development"
5+
"name": "TestServer Launch",
6+
"type": "coreclr",
7+
"request": "launch",
8+
"preLaunchTask": "Build",
9+
"program": "${workspaceFolder}/src/TestServer/bin/Debug/net8.0/TestServer.dll",
10+
"cwd": "${workspaceFolder}/src/TestServer/bin/Debug/net8.0/",
11+
"internalConsoleOptions": "openOnSessionStart",
12+
"env": {
13+
"ASPNETCORE_ENVIRONMENT": "Development"
14+
}
15+
},
16+
{
17+
"name": "TestClient Launch",
18+
"type": "coreclr",
19+
"request": "launch",
20+
"preLaunchTask": "Build",
21+
"program": "${workspaceFolder}/src/TestClient/bin/Debug/net8.0/TestClient.dll",
22+
"cwd": "${workspaceFolder}/src/TestClient/bin/Debug/net8.0/",
23+
"internalConsoleOptions": "openOnSessionStart"
1524
}
16-
},
17-
{
18-
"name": "TestClient Launch",
19-
"type": "coreclr",
20-
"request": "launch",
21-
"preLaunchTask": "Build",
22-
"program": "${workspaceFolder}/src/TestClient/bin/Debug/net6.0/TestClient.dll",
23-
"cwd": "${workspaceFolder}/src/TestClient/bin/Debug/net6.0/",
24-
"internalConsoleOptions": "openOnSessionStart"
25-
}]
25+
]
2626
}

.vscode/tasks.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
22
"version": "2.0.0",
33
"tasks": [
4-
{
5-
"label": "Build",
6-
"command": "dotnet",
7-
"type": "process",
8-
"args": [
9-
"build",
10-
"${workspaceFolder}/src/Simplify.Web.Multipart.sln"
11-
],
12-
"problemMatcher": "$msCompile",
13-
"group":
144
{
15-
"kind": "build",
16-
"isDefault": true
5+
"label": "Build",
6+
"command": "dotnet",
7+
"type": "process",
8+
"args": [
9+
"build",
10+
"${workspaceFolder}/src/Simplify.Web.Multipart.sln"
11+
],
12+
"problemMatcher": "$msCompile",
13+
"group": {
14+
"kind": "build",
15+
"isDefault": true
16+
}
1717
}
18-
}]
18+
]
1919
}

src/TestClient/TestClient.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net6.0</TargetFramework>
3+
<TargetFramework>net8.0</TargetFramework>
44
<OutputType>Exe</OutputType>
55
<IsPackable>false</IsPackable>
66
</PropertyGroup>

src/TestServer/TestServer.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22
<PropertyGroup>
3-
<TargetFramework>net6.0</TargetFramework>
3+
<TargetFramework>net8.0</TargetFramework>
44
</PropertyGroup>
55
<ItemGroup>
66
<ProjectReference Include="..\Simplify.Web.Multipart\Simplify.Web.Multipart.csproj" />

0 commit comments

Comments
 (0)