Global json, windows publish task

This commit is contained in:
2022-02-03 09:06:46 +01:00
parent ee0c6f7a0b
commit 1ea1012703
3 changed files with 23 additions and 80 deletions

60
.vscode/tasks.json vendored
View File

@@ -2,7 +2,7 @@
"version": "2.0.0",
"tasks": [
{
"label": "build",
"label": "build cli",
"command": "dotnet",
"type": "process",
"args": [
@@ -14,7 +14,7 @@
"problemMatcher": "$msCompile"
},
{
"label": "publish",
"label": "publish cli",
"command": "dotnet",
"type": "process",
"args": [
@@ -26,7 +26,7 @@
"problemMatcher": "$msCompile"
},
{
"label": "publish singlefile linux",
"label": "publish singlefile linux cli",
"command": "dotnet",
"type": "process",
"args": [
@@ -43,7 +43,7 @@
"problemMatcher": "$msCompile"
},
{
"label": "publish singlefile windows",
"label": "publish singlefile windows cli",
"command": "dotnet",
"type": "process",
"args": [
@@ -59,6 +59,20 @@
],
"problemMatcher": "$msCompile"
},
{
"label": "publish windows gui",
"command": "dotnet",
"type": "process",
"args": [
"publish",
"${workspaceFolder}/src/GuiApp/FileTime.Avalonia/FileTime.Avalonia.csproj",
"-c",
"Release",
"-r",
"win-x64"
],
"problemMatcher": "$msCompile"
},
{
"label": "watch",
"command": "dotnet",
@@ -71,42 +85,6 @@
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "build-skia-gtk",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/src/GuiApp/FileTime.Uno/FileTime.Uno.Skia.Gtk/FileTime.Uno.Skia.Gtk.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "publish-skia-gtk",
"command": "dotnet",
"type": "process",
"args": [
"publish",
"${workspaceFolder}/src//GuiApp/FileTime.Uno/FileTime.Uno.Skia.Gtk/FileTime.Uno.Skia.Gtk.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "build-skia-framebuffer",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/src/GuiApp/FileTime.Uno/FileTime.Uno.Skia.Linux.FrameBuffer/FileTime.Uno.Skia.Linux.FrameBuffer.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
}
]
}