21 lines
913 B
YAML
21 lines
913 B
YAML
version: '3.0.0.{build}'
|
|
image: Windows
|
|
platform: x86
|
|
configuration: Release
|
|
assembly_info:
|
|
patch: true
|
|
file: AssemblyInfo.*
|
|
assembly_version: '{version}'
|
|
assembly_file_version: '{version}'
|
|
assembly_informational_version: '3.0.0 Base'
|
|
install:
|
|
- appveyor DownloadFile https://dist.nuget.org/win-x86-commandline/latest/nuget.exe
|
|
- set PATH=%ProgramFiles(x86)%\Microsoft Visual Studio\2017\Enterprise\MSBuild\15.0\Bin;%PATH%
|
|
before_build:
|
|
- nuget restore
|
|
build_script:
|
|
- msbuild /verbosity:minimal "SafeExamBrowser.sln"
|
|
after_build:
|
|
- appveyor PushArtifact "Setup\bin\%CONFIGURATION%\Setup.msi" -FileName "SEB-%APPVEYOR_BUILD_VERSION%-Setup.msi" -DeploymentName "SEB %APPVEYOR_BUILD_VERSION% Setup"
|
|
- appveyor PushArtifact "SetupBundle\bin\%CONFIGURATION%\SetupBundle.exe" -FileName "SEB-%APPVEYOR_BUILD_VERSION%-SetupBundle.exe" -DeploymentName "SEB %APPVEYOR_BUILD_VERSION% SetupBundle"
|
|
test: off
|