mirror of
https://github.com/prime31/FNA-VSCode-Template.git
synced 2025-10-31 21:50:44 +07:00
cleanse the magic Nez updater task
This commit is contained in:
parent
6d619a4ee9
commit
b49cb32592
8
.vscode/tasks.json
vendored
8
.vscode/tasks.json
vendored
@ -12,13 +12,11 @@
|
||||
{
|
||||
// this does a bunch of stuff:
|
||||
// - update submodules to lastest (fetch latest Nez version)
|
||||
// - restore Nez.sln (nuget restore to get latest packages)
|
||||
// - build Nez.sln (build to get latest Pipeline DLLs)
|
||||
// - restore Nez.FNA.sln (nuget restore Nez.FNA)
|
||||
// - build Nez.FNA.sln (build Nez.FNA)
|
||||
// - clean, restore and rebuild Nez.sln (nuget restore to get latest packages)
|
||||
// - clean, restore and rebuild Nez.FNA.sln (nuget restore Nez.FNA)
|
||||
"label": "Update, Restore and Rebuild Nez",
|
||||
"type": "shell",
|
||||
"command": "git submodule foreach --recursive git pull ; msbuild Nez/Nez.sln /t:restore; msbuild Nez/Nez.sln ; msbuild Nez/Nez.FNA.sln /t:restore ; msbuild Nez/Nez.FNA.sln",
|
||||
"command": "git submodule foreach --recursive git pull && msbuild Nez/Nez.sln '/t:clean;restore;build' && msbuild Nez/Nez.FNA.sln '/t:clean;restore;build'",
|
||||
"group": "build",
|
||||
"problemMatcher": "$msCompile",
|
||||
"presentation": {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user