瀏覽代碼

besseres build script

Kolja Strohm 5 年之前
父節點
當前提交
8510f70210
共有 3 個文件被更改,包括 3 次插入3 次删除
  1. 二進制
      Start/Framework.dll
  2. 二進制
      Start/Network.dll
  3. 3 3
      build.bat

二進制
Start/Framework.dll


二進制
Start/Network.dll


+ 3 - 3
build.bat

@@ -1,17 +1,17 @@
 :DebugWin64
 SET RETURN=DebugWin64
 SET NEXT=ReleaseWin64
-"%InstallDir%\MSBuild\15.0\Bin\MSBuild.exe" "Start.sln" /p:configuration=debug /p:platform=x64
+"%InstallDir%\%MSBuildExe%" "Start.sln" /p:configuration=debug /p:platform=x64
 if errorlevel 1 GOTO Error
 :ReleaseWin64
 SET RETURN=ReleaseWin64
 SET NEXT=ReleaseWin32
-"%InstallDir%\MSBuild\15.0\Bin\MSBuild.exe" "Start.sln" /p:configuration=release /p:platform=x64
+"%InstallDir%\%MSBuildExe%" "Start.sln" /p:configuration=release /p:platform=x64
 if errorlevel 1 GOTO Error
 :ReleaseWin32
 SET RETURN=ReleaseWin32
 SET NEXT=END
-"%InstallDir%\MSBuild\15.0\Bin\MSBuild.exe" "Start.sln" /p:configuration=release /p:platform=win32
+"%InstallDir%\%MSBuildExe%" "Start.sln" /p:configuration=release /p:platform=win32
 if errorlevel 1 GOTO Error
 GOTO End
 :Error