dark theme, logo, tests

This commit is contained in:
2021-09-13 23:28:56 +01:00
parent 51a08dec9a
commit cd3629a5a0
9 changed files with 43 additions and 24 deletions

10
.vscode/settings.json vendored
View File

@ -3,10 +3,12 @@
"dotnet-test-explorer.runInParallel": false,
"dotnet-test-explorer.showCodeLens": true,
"dotnet-test-explorer.testArguments": "",
"nxunitExplorer.nunit": "${workspaceFolder}/packages/nunit3-console.1.0.0/lib/net20/nunit3-console.exe",
"nxunitExplorer.xunit": "${workspaceFolder}/packages/xunit.runner.console.2.4.1/tools/net472/xunit.console.exe",
"nxunitExplorer.modules": [
"test/**/bin/**/*.{dll,exe}"
"test/i*/bin/Debug/*/*.tests.dll"
],
"nxunitExplorer.logpanel": true
"nxunitExplorer.skippattern": "",
"dotnetCoreExplorer.runEnvVars": {
"ASPNETCORE_ENVIRONMENT": "Testing"
},
"dotnetCoreExplorer.searchpatterns": "test/**/bin/**/*.tests.{dll,exe}"
}

11
.vscode/tasks.json vendored
View File

@ -50,13 +50,19 @@
],
"problemMatcher": "$msCompile"
},
{
"label": "copyTestConfig",
"command": "dotnet",
"type": "process",
"args": [ "build", "/t:CopyTestConfig" ]
},
{
"label": "test",
"command": "dotnet",
"type": "process",
"options": {
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
"ASPNETCORE_ENVIRONMENT": "Testing"
}
},
"args": [
@ -64,7 +70,8 @@
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
"problemMatcher": "$msCompile",
"dependsOn": [ "build", "copyTestConfig"]
},
{
"label": "watch",