Skip to content

Commit 7196211

Browse files
committed
Fixes related to the changes on the CI server...
1 parent faeaeb5 commit 7196211

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

External/Tools/SetVersion/Program.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ static void Main(string[] args)
3232
Console.WriteLine("SetVersion: Can not find HEAD ref, write from env vars.");
3333
commit = Environment.ExpandEnvironmentVariables("%CommitId%");
3434
if (commit.Length == 40) commit = commit.Substring(0, 10);
35-
branch = Environment.ExpandEnvironmentVariables("%BranchId%");
36-
build = Environment.ExpandEnvironmentVariables("%ProjectBuildNumber%");
35+
branch = Environment.ExpandEnvironmentVariables("%RepositoryBranch%");
36+
build = Environment.ExpandEnvironmentVariables("%AppVeyor.ProjectBuildNumber%");
3737
WriteFile(output, revOut, commit, branch, build);
3838
return;
3939
}
0 Bytes
Binary file not shown.

SetVersion.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
@echo off
22
cd "%1"
3-
"External\Tools\SetVersion\SetVersion.exe" "FlashDevelop\Properties\AssemblyInfo.cs" "%ProjectBuildNumber%"
3+
"External\Tools\SetVersion\SetVersion.exe" "FlashDevelop\Properties\AssemblyInfo.cs" "%AppVeyor.ProjectBuildNumber%"
44

0 commit comments

Comments
 (0)