This commit is contained in:
Oli Sturm
2022-02-17 16:07:37 +00:00
commit eecba258b3
13 changed files with 596 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
{
"version": "0.2.0",
"configurations": [
{
// Use IntelliSense to find out which attributes exist for C# debugging
// Use hover for the description of the existing attributes
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
"name": ".NET Core Launch (console)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
// If you have changed target frameworks, make sure to update the program path.
//"program": "${workspaceFolder}/NewRecordWith/bin/Debug/net6.0/NewRecordWith.dll",
"program": "${fileDirname}/bin/Debug/net6.0/${relativeFileDirname}.dll",
"args": [],
"cwd": "${fileDirname}",
//"cwd": "${workspaceFolder}/NewRecordWith",
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
"console": "internalConsole",
"stopAtEntry": false
},
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach"
}
]
}
+3
View File
@@ -0,0 +1,3 @@
{
"editor.formatOnSave": true
}
+18
View File
@@ -0,0 +1,18 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${fileDirname}/${relativeFileDirname}.csproj",
//"${workspaceFolder}/NewRecordWith/NewRecordWith.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
]
}