Haru/.vscode/tasks.json
2021-12-29 00:37:50 +01:00

31 lines
1.0 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "build: 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 build"
}
},
{
"label": "build: launcher",
"type": "shell",
"linux": {
"command": "dotnet publish Launcher/Launcher.csproj /p:PublishProfile=Launcher/Properties/PublishProfiles/linux-x64.pubxml"
},
"osx": {
"command": "dotnet publish Launcher/Launcher.csproj /p:PublishProfile=Launcher/Properties/PublishProfiles/osx-x64.pubxml"
},
"windows": {
"command": "dotnet publish Launcher/Launcher.csproj /p:PublishProfile=Launcher/Properties/PublishProfiles/win-x64.pubxml"
}
}
]
}