Add restore to Makefile

Runs the Restore target prior to building the actual targets.
This commit is contained in:
Raul Santos
2021-09-22 17:30:38 +02:00
parent c8bd76bc90
commit 9db0d10348

View File

@@ -26,10 +26,10 @@ tsc-debug:
./node_modules/.bin/webpack --mode development
$(GODOT_DEBUG_SESSION):
msbuild /p:Configuration=Release $(SOLUTION_DIR)/GodotDebugSession.sln
msbuild /p:Configuration=Release /restore $(SOLUTION_DIR)/GodotDebugSession.sln
$(GODOT_DEBUG_SESSION)-debug:
msbuild /p:Configuration=Debug $(SOLUTION_DIR)/GodotDebugSession.sln
msbuild /p:Configuration=Debug /restore $(SOLUTION_DIR)/GodotDebugSession.sln
clean:
msbuild /t:Clean $(SOLUTION_DIR)/GodotDebugSession.sln