mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
455 B
17 lines
455 B
@setlocal enabledelayedexpansion |
|
@set MSBUILD= |
|
@for /D %%M in ("%ProgramFiles(x86)%\Microsoft Visual Studio\2019"\*) do ( |
|
@if exist "%%M\MSBuild\Current\Bin\MSBuild.exe" ( |
|
@set "MSBUILD=%%M\MSBuild\Current\Bin\MSBuild.exe" |
|
) |
|
) |
|
@if "%MSBUILD%" == "" ( |
|
@echo Could not find VS2019 MSBuild |
|
@exit /b 1 |
|
) |
|
"%MSBUILD%" ILSpy.sln /p:Configuration=Debug "/p:Platform=Any CPU" |
|
@IF %ERRORLEVEL% NEQ 0 ( |
|
@pause |
|
@exit /b 1 |
|
) |
|
@exit /b 0
|
|
|