Skip to content

Commit 619fd94

Browse files
committed
Merge branch 'release/3.0'
2 parents 2874f60 + 25d4943 commit 619fd94

File tree

241 files changed

+2136
-1878
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

241 files changed

+2136
-1878
lines changed

.vscode/launch.json

+7-13
Original file line numberDiff line numberDiff line change
@@ -2,35 +2,29 @@
22
"version": "0.2.0",
33
"configurations": [
44
{
5-
"name": "Simplify.Web.Examples.Kestrel Launch",
5+
"name": "SampleApp.Kestrel Launch",
66
"type": "coreclr",
77
"request": "launch",
88
"preLaunchTask": "Build Kestrel Example",
9-
"program": "${workspaceFolder}/src/Examples/Simplify.Web.Examples.Kestrel/bin/Debug/netcoreapp2.1/Simplify.Web.Examples.Kestrel.dll",
10-
"cwd": "${workspaceFolder}/src/Examples/Simplify.Web.Examples.Kestrel",
9+
"program": "${workspaceFolder}/src/SampleApps/SampleApp.Kestrel/bin/Debug/netcoreapp3.0/SampleApp.Kestrel.dll",
10+
"cwd": "${workspaceFolder}/src/SampleApps/SampleApp.Kestrel",
1111
"internalConsoleOptions": "openOnSessionStart",
1212
"env":
1313
{
1414
"ASPNETCORE_ENVIRONMENT": "Development"
1515
}
1616
},
1717
{
18-
"name": "Simplify.Web.Examples.SelfHosted Launch",
18+
"name": "SampleApp.Classic Launch",
1919
"type": "coreclr",
2020
"request": "launch",
21-
"preLaunchTask": "Build SelfHosted Example",
22-
"program": "${workspaceFolder}/src/Examples/Simplify.Web.Examples.SelfHosted/bin/Debug/netcoreapp2.1/Simplify.Web.Examples.SelfHosted.dll",
23-
"cwd": "${workspaceFolder}/src/Examples/Simplify.Web.Examples.SelfHosted",
21+
"preLaunchTask": "Build Classic Example",
22+
"program": "${workspaceFolder}/src/SampleApps/SampleApp.Classic/bin/Debug/netcoreapp3.0/SampleApp.Classic.dll",
23+
"cwd": "${workspaceFolder}/src/SampleApps/SampleApp.Classic",
2424
"internalConsoleOptions": "openOnSessionStart",
2525
"env":
2626
{
2727
"ASPNETCORE_ENVIRONMENT": "Development"
2828
}
29-
},
30-
{
31-
"name": ".NET Core Attach",
32-
"type": "coreclr",
33-
"request": "attach",
34-
"processId": "${command:pickProcess}"
3529
}]
3630
}

.vscode/tasks.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@
77
"type": "process",
88
"args": [
99
"build",
10-
"${workspaceFolder}/src/Examples/Simplify.Web.Examples.Kestrel/Simplify.Web.Examples.Kestrel.csproj"
10+
"${workspaceFolder}/src/SampleApps/SampleApp.Kestrel/SampleApp.Kestrel.csproj"
1111
],
1212
"problemMatcher": "$msCompile"
1313
},
1414
{
15-
"label": "Build SelfHosted Example",
15+
"label": "Build Classic Example",
1616
"command": "dotnet",
1717
"type": "process",
1818
"args": [
1919
"build",
20-
"${workspaceFolder}/src/Examples/Simplify.Web.Examples.SelfHosted/Simplify.Web.Examples.SelfHosted.csproj"
20+
"${workspaceFolder}/src/SampleApps/SampleApp.Classic/SampleApp.Classic.csproj"
2121
],
2222
"problemMatcher": "$msCompile"
2323
},

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
version: '{build}'
22

3-
image: Visual Studio 2017
3+
image: Visual Studio 2019
44

55
skip_tags: true
66
clone_depth: 1

0 commit comments

Comments
 (0)