Browse Source

Do sequential builds for Debug and Release in one job.

pull/850/head
Siegfried Pammer 8 years ago
parent
commit
e3558c287b
  1. 6
      appveyor.yml

6
appveyor.yml

@ -1,6 +1,3 @@ @@ -1,6 +1,3 @@
configuration:
- Debug
- Release
platform: Any CPU
image: Visual Studio 2017
install:
@ -30,7 +27,8 @@ install: @@ -30,7 +27,8 @@ install:
before_build:
- nuget restore ILSpy.sln
build_script:
- msbuild ILSpy.sln /v:minimal /p:ResolveNuGetPackages=false "/logger:%ProgramFiles%\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
- msbuild ILSpy.sln /v:minimal /p:ResolveNuGetPackages=false;Configuration=Debug "/logger:%ProgramFiles%\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
- msbuild ILSpy.sln /v:minimal /p:ResolveNuGetPackages=false;Configuration=Release "/logger:%ProgramFiles%\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
after_build:
- 7z a ILSpy_%APPVEYOR_REPO_BRANCH%_%ILSPY_VERSION_NUMBER%_Binaries.zip %APPVEYOR_BUILD_FOLDER%\ILSpy\bin\Release\net461\*.dll %APPVEYOR_BUILD_FOLDER%\ILSpy\bin\Release\net461\*.exe %APPVEYOR_BUILD_FOLDER%\ILSpy\bin\Release\net461\*.config
test:

Loading…
Cancel
Save