We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2537ed7 commit ccd2756Copy full SHA for ccd2756
Directory.Build.targets
@@ -14,8 +14,8 @@
14
15
<Target Name="ApplyFileVersion" AfterTargets="MinVer">
16
<PropertyGroup>
17
- <BUILD_BUILDNUMBER Condition="'$(BUILD_BUILDNUMBER)' == ''">00000</BUILD_BUILDNUMBER>
18
- <FileVersion>$(MinVerMajor).$(MinVerMinor).$(MinVerPatch).$(BUILD_BUILDNUMBER)</FileVersion>
+ <GITHUB_RUN_NUMBER Condition="'$(GITHUB_RUN_NUMBER)' == ''">0</GITHUB_RUN_NUMBER>
+ <FileVersion>$(MinVerMajor).$(MinVerMinor).$(MinVerPatch).$(GITHUB_RUN_NUMBER)</FileVersion>
19
</PropertyGroup>
20
</Target>
21
</Project>
0 commit comments