2023-05-22 21:46:46 -05:00
|
|
|
{
|
|
|
|
"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"
|
2023-09-29 20:12:36 -05:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"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"
|
2023-05-22 21:46:46 -05:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|