Create-Shortcut

This commit is contained in:
2022-01-31 14:57:15 -07:00
parent ca79ea6114
commit 32462802f0
7 changed files with 85 additions and 30 deletions

18
Git/task-runner.json Normal file
View File

@ -0,0 +1,18 @@
{
"tasks": [
{
"group": "pre-commit",
"name": "dotnet-format",
"command": "dotnet",
"args": [
"format",
"--report",
".vscode",
"--verbosity",
"detailed",
"--severity",
"error"
]
}
]
}