From f1de26cb641f0c48516c025240a30037a8d8dceb Mon Sep 17 00:00:00 2001 From: dbuechel Date: Wed, 4 Sep 2019 15:36:07 +0200 Subject: [PATCH] SEBWIN-342: Minor name change of release build artifacts. --- SafeExamBrowser.ResetUtility/Procedure/Version.cs | 2 +- appveyor-release.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/SafeExamBrowser.ResetUtility/Procedure/Version.cs b/SafeExamBrowser.ResetUtility/Procedure/Version.cs index b0800e26..9eeaa68e 100644 --- a/SafeExamBrowser.ResetUtility/Procedure/Version.cs +++ b/SafeExamBrowser.ResetUtility/Procedure/Version.cs @@ -28,7 +28,7 @@ namespace SafeExamBrowser.ResetUtility.Procedure Console.ForegroundColor = ConsoleColor.DarkBlue; Console.WriteLine($"Safe Exam Browser, Version {version}"); - Console.WriteLine($"Build Version {build}"); + Console.WriteLine($"Build {build}"); Console.WriteLine(copyright.Replace("©", "(c)")); Console.WriteLine(); Console.ForegroundColor = ForegroundColor; diff --git a/appveyor-release.yml b/appveyor-release.yml index 4ccae12d..55123a03 100644 --- a/appveyor-release.yml +++ b/appveyor-release.yml @@ -15,6 +15,6 @@ before_build: 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" + - 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