cleanse the magic Nez updater task

This commit is contained in:
Mike 2019-02-20 00:18:17 -08:00
parent 6d619a4ee9
commit b49cb32592

8
.vscode/tasks.json vendored
View File

@ -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": {