31 lines
1.2 KiB
JSON
31 lines
1.2 KiB
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "release: server",
|
|
"type": "shell",
|
|
"linux": {
|
|
"command": "npm --prefix Server run release:any"
|
|
},
|
|
"osx": {
|
|
"command": "npm --prefix Server run release:any"
|
|
},
|
|
"windows": {
|
|
"command": "npm --prefix Server run release:win"
|
|
}
|
|
},
|
|
{
|
|
"label": "release: launcher",
|
|
"type": "shell",
|
|
"linux": {
|
|
"command": "dotnet publish Launcher/Launcher.csproj --nologo --verbosity minimal --runtime linux-x64 --configuration Release -p:PublishSingleFile=true --no-self-contained"
|
|
},
|
|
"osx": {
|
|
"command": "dotnet publish Launcher/Launcher.csproj --nologo --verbosity minimal --runtime osx-x64 --configuration Release -p:PublishSingleFile=true --no-self-contained"
|
|
},
|
|
"windows": {
|
|
"command": "dotnet publish Launcher/Launcher.csproj --nologo --verbosity minimal --runtime win-x64 --configuration Release -p:PublishSingleFile=true --no-self-contained"
|
|
}
|
|
}
|
|
]
|
|
} |