mirror of
https://github.com/TheShadowEevee/Sharpii-NetCore.git
synced 2025-01-11 14:58:51 -06:00
137 lines
No EOL
3.9 KiB
JSON
137 lines
No EOL
3.9 KiB
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Publish Windows x64",
|
|
"command": "dotnet",
|
|
"type": "process",
|
|
"args": [
|
|
"publish",
|
|
"${workspaceFolder}/Sharpii.csproj",
|
|
"-c",
|
|
"Release",
|
|
"-r",
|
|
"win-x64",
|
|
"-o",
|
|
"${workspaceFolder}/Releases/Sharpii-Windows-x64"
|
|
],
|
|
"problemMatcher": "$msCompile"
|
|
},
|
|
{
|
|
"label": "Publish Linux x64",
|
|
"command": "dotnet",
|
|
"type": "process",
|
|
"args": [
|
|
"publish",
|
|
"${workspaceFolder}/Sharpii.csproj",
|
|
"-c",
|
|
"Release",
|
|
"-r",
|
|
"linux-x64",
|
|
"-o",
|
|
"${workspaceFolder}/Releases/Sharpii-Linux-x64"
|
|
],
|
|
"problemMatcher": "$msCompile"
|
|
},
|
|
{
|
|
"label": "Publish Linux ARM",
|
|
"command": "dotnet",
|
|
"type": "process",
|
|
"args": [
|
|
"publish",
|
|
"${workspaceFolder}/Sharpii.csproj",
|
|
"-c",
|
|
"Release",
|
|
"-r",
|
|
"linux-arm",
|
|
"-o",
|
|
"${workspaceFolder}/Releases/Sharpii-Linux-ARM"
|
|
],
|
|
"problemMatcher": "$msCompile"
|
|
},
|
|
{
|
|
"label": "Publish Linux ARM64",
|
|
"command": "dotnet",
|
|
"type": "process",
|
|
"args": [
|
|
"publish",
|
|
"${workspaceFolder}/Sharpii.csproj",
|
|
"-c",
|
|
"Release",
|
|
"-r",
|
|
"linux-arm64",
|
|
"-o",
|
|
"${workspaceFolder}/Releases/Sharpii-Linux-ARM64"
|
|
],
|
|
"problemMatcher": "$msCompile"
|
|
},
|
|
{
|
|
"label": "Publish MacOSX x64",
|
|
"command": "dotnet",
|
|
"type": "process",
|
|
"args": [
|
|
"publish",
|
|
"${workspaceFolder}/Sharpii.csproj",
|
|
"-c",
|
|
"Release",
|
|
"-r",
|
|
"osx-x64",
|
|
"-o",
|
|
"${workspaceFolder}/Releases/Sharpii-OSX-x64"
|
|
],
|
|
"problemMatcher": "$msCompile"
|
|
},
|
|
{
|
|
"label": "Publish MacOSX ARM64",
|
|
"command": "dotnet",
|
|
"type": "process",
|
|
"args": [
|
|
"publish",
|
|
"${workspaceFolder}/Sharpii.csproj",
|
|
"-c",
|
|
"Release",
|
|
"-r",
|
|
"osx-arm64",
|
|
"-o",
|
|
"${workspaceFolder}/Releases/Sharpii-OSX-ARM64"
|
|
],
|
|
"problemMatcher": "$msCompile"
|
|
},
|
|
{
|
|
"label": "build",
|
|
"command": "dotnet",
|
|
"type": "process",
|
|
"args": [
|
|
"build",
|
|
"${workspaceFolder}/Sharpii.sln",
|
|
"/property:GenerateFullPaths=true",
|
|
"/consoleloggerparameters:NoSummary"
|
|
],
|
|
"problemMatcher": "$msCompile"
|
|
},
|
|
{
|
|
"label": "publish",
|
|
"command": "dotnet",
|
|
"type": "process",
|
|
"args": [
|
|
"publish",
|
|
"${workspaceFolder}/Sharpii.sln",
|
|
"/property:GenerateFullPaths=true",
|
|
"/consoleloggerparameters:NoSummary"
|
|
],
|
|
"problemMatcher": "$msCompile"
|
|
},
|
|
{
|
|
"label": "watch",
|
|
"command": "dotnet",
|
|
"type": "process",
|
|
"args": [
|
|
"watch",
|
|
"run",
|
|
"--project",
|
|
"${workspaceFolder}/Sharpii.sln"
|
|
],
|
|
"problemMatcher": "$msCompile"
|
|
}
|
|
]
|
|
} |