updated message

هذا الالتزام موجود في:
Chris Ayers
2023-04-25 23:54:34 +00:00
الأصل 7a2e95c296
التزام 73c12b53dd
3 ملفات معدلة مع 77 إضافات و1 حذوفات

41
.vscode/tasks.json مباع Normal file
عرض الملف

@@ -0,0 +1,41 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/dotnet-sample/dotnet-sample.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "publish",
"command": "dotnet",
"type": "process",
"args": [
"publish",
"${workspaceFolder}/dotnet-sample/dotnet-sample.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "watch",
"command": "dotnet",
"type": "process",
"args": [
"watch",
"run",
"--project",
"${workspaceFolder}/dotnet-sample/dotnet-sample.csproj"
],
"problemMatcher": "$msCompile"
}
]
}