Haru/.vscode/tasks.json

31 lines
1.2 KiB
JSON
Raw Normal View History

2021-12-26 17:20:59 +01:00
{
"version": "2.0.0",
"tasks": [
{
2021-12-28 22:56:56 +01:00
"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"
}
2021-12-26 17:20:59 +01:00
}
]
}