From b49cb32592776ffa2903bd485cc45c3f079863d6 Mon Sep 17 00:00:00 2001 From: Mike Date: Wed, 20 Feb 2019 00:18:17 -0800 Subject: [PATCH] cleanse the magic Nez updater task --- .vscode/tasks.json | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 4de816b..bf8d65f 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -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": {