2021-06-08 11:36:21 +02:00
|
|
|
version: '3.3.0.{build}'
|
2019-08-20 09:59:56 +02:00
|
|
|
image: Windows
|
2019-08-20 09:29:39 +02:00
|
|
|
configuration: Release
|
2019-11-06 15:45:17 +01:00
|
|
|
platform:
|
|
|
|
- x64
|
2019-11-07 10:05:59 +01:00
|
|
|
- x86
|
2019-11-06 15:45:17 +01:00
|
|
|
matrix:
|
|
|
|
fast_finish: true
|
|
|
|
max_jobs: 1
|
2019-08-20 09:29:39 +02:00
|
|
|
assembly_info:
|
|
|
|
patch: true
|
|
|
|
file: AssemblyInfo.*
|
|
|
|
assembly_version: '{version}'
|
|
|
|
assembly_file_version: '{version}'
|
2021-08-03 11:50:54 +02:00
|
|
|
assembly_informational_version: '3.3.0 ($(platform))'
|
2019-08-20 10:30:06 +02:00
|
|
|
install:
|
|
|
|
- appveyor DownloadFile https://dist.nuget.org/win-x86-commandline/latest/nuget.exe
|
2019-08-20 09:29:39 +02:00
|
|
|
build_script:
|
|
|
|
- msbuild /verbosity:minimal "SafeExamBrowser.sln"
|
2019-08-20 11:35:26 +02:00
|
|
|
test: off
|
2019-11-07 10:05:59 +01:00
|
|
|
|
|
|
|
for:
|
|
|
|
-
|
|
|
|
matrix:
|
|
|
|
only:
|
2019-11-07 11:48:39 +01:00
|
|
|
- platform: x64
|
|
|
|
before_build:
|
|
|
|
- nuget restore
|
2019-11-07 10:05:59 +01:00
|
|
|
after_build:
|
2020-05-13 18:33:20 +02:00
|
|
|
- copy /y "Setup\bin\%PLATFORM%\%CONFIGURATION%\Setup.msi" "%TEMP%\SEB_Setup.msi"
|
|
|
|
- appveyor PushArtifact "Setup\bin\%PLATFORM%\%CONFIGURATION%\Setup.msi" -FileName "SEB_%APPVEYOR_BUILD_VERSION%_%PLATFORM%_Setup.msi" -DeploymentName "%APPVEYOR_BUILD_VERSION% Setup (%PLATFORM%)"
|
2019-11-07 10:05:59 +01:00
|
|
|
|
|
|
|
-
|
|
|
|
matrix:
|
|
|
|
only:
|
2019-11-07 11:48:39 +01:00
|
|
|
- platform: x86
|
|
|
|
before_build:
|
|
|
|
- nuget restore
|
2019-11-07 14:31:25 +01:00
|
|
|
- md "Setup\bin\x64\%CONFIGURATION%"
|
2020-05-13 18:33:20 +02:00
|
|
|
- move "%TEMP%\SEB_Setup.msi" "Setup\bin\x64\%CONFIGURATION%\Setup.msi"
|
2019-11-07 10:05:59 +01:00
|
|
|
after_build:
|
2020-05-13 18:33:20 +02:00
|
|
|
- appveyor PushArtifact "Setup\bin\%PLATFORM%\%CONFIGURATION%\Setup.msi" -FileName "SEB_%APPVEYOR_BUILD_VERSION%_%PLATFORM%_Setup.msi" -DeploymentName "%APPVEYOR_BUILD_VERSION% Setup (%PLATFORM%)"
|
|
|
|
- appveyor PushArtifact "SetupBundle\bin\%PLATFORM%\%CONFIGURATION%\SetupBundle.exe" -FileName "SEB_%APPVEYOR_BUILD_VERSION%_SetupBundle.exe" -DeploymentName "%APPVEYOR_BUILD_VERSION% Setup Bundle"
|