Adding test configuration

This commit is contained in:
2024-03-10 20:36:07 +01:00
parent 5ac0d169b6
commit ddb5223572
22 changed files with 112 additions and 21 deletions

6
.vscode/tasks.json vendored
View File

@@ -7,7 +7,7 @@
"type": "process",
"args": [
"build",
"${workspaceFolder}/BasicDotnetTemplate.csproj",
"${workspaceFolder}/MainProject/MainProject.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary;ForceNoAlign"
],
@@ -19,7 +19,7 @@
"type": "process",
"args": [
"publish",
"${workspaceFolder}/BasicDotnetTemplate.csproj",
"${workspaceFolder}/MainProject/MainProject.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary;ForceNoAlign"
],
@@ -33,7 +33,7 @@
"watch",
"run",
"--project",
"${workspaceFolder}/BasicDotnetTemplate.csproj"
"${workspaceFolder}/MainProject.csproj"
],
"problemMatcher": "$msCompile"
}