diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..615cfb2 --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ + +default: cleanbuild + +build: + nuget restore + cd QuickPlay && msbuild /t:Build + +deploy: build + cd QuickPlay && msbuild /t:Install + +clean: + git clean -fxd + git submodule foreach --recursive git clean -fxd + +cleanbuild: clean build