Skip to content

Commit 796b11c

Browse files
committed
[r] CodeMaid cleanup
[edit] launch profile setup
1 parent bfef44f commit 796b11c

File tree

5 files changed

+34
-26
lines changed

5 files changed

+34
-26
lines changed

.vscode/launch.json

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

.vscode/settings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"cSpell.words": [
3+
"ASPNETCORE",
34
"cref",
45
"seealso"
56
]

.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.Postman.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.Postman.sln"
11+
],
12+
"problemMatcher": "$msCompile",
13+
"group": {
14+
"kind": "build",
15+
"isDefault": true
16+
}
1717
}
18-
}]
18+
]
1919
}

src/TesterApp/Properties/launchSettings.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
{
2+
"iisSettings": {
3+
"windowsAuthentication": false,
4+
"anonymousAuthentication": true,
5+
"iisExpress": {
6+
"applicationUrl": "http://localhost:5000",
7+
"sslPort": 0
8+
}
9+
},
210
"profiles": {
311
"IIS Express": {
412
"commandName": "IISExpress",
@@ -8,10 +16,10 @@
816
},
917
"TesterApp": {
1018
"commandName": "Project",
19+
"launchBrowser": true,
1120
"environmentVariables": {
1221
"ASPNETCORE_ENVIRONMENT": "Development"
1322
},
14-
"launchBrowser": true,
1523
"applicationUrl": "http://localhost:5000"
1624
}
1725
}

src/TesterApp/TesterApp.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22
<PropertyGroup>
33
<TargetFramework>net8.0</TargetFramework>
4-
<AspNetCoreHostingModel>OutOfProcess</AspNetCoreHostingModel>
54
</PropertyGroup>
65
<ItemGroup>
76
<ProjectReference Include="..\Simplify.Web.Postman\Simplify.Web.Postman.csproj" />

0 commit comments

Comments
 (0)