2022-08-09 15:45:09 +02:00
|
|
|
version: '3.5.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}'
|
2023-04-03 15:36:26 +02:00
|
|
|
assembly_informational_version: '3.5.0 ($(platform))'
|
2019-08-20 10:30:06 +02:00
|
|
|
install:
|
2021-08-16 12:40:22 +02:00
|
|
|
- appveyor DownloadFile "https://dist.nuget.org/win-x86-commandline/latest/nuget.exe"
|
2019-08-20 09:29:39 +02:00
|
|
|
build_script:
|
2022-02-03 13:37:48 +01:00
|
|
|
- msbuild /verbosity:minimal /property:langversion=latest "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"
|
2021-08-16 13:17:03 +02:00
|
|
|
- appveyor DownloadFile "https://go.microsoft.com/fwlink/p/?LinkId=2124703" -FileName "C:\Temp\MicrosoftEdgeWebview2Setup.exe"
|
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"
|