mirror of
https://github.com/sebastian-heinz/Arrowgene.DragonsDogmaOnline
synced 2026-08-03 11:12:41 -04:00
14 lines
680 B
XML
14 lines
680 B
XML
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<Target Name="SetSourceRevisionId" BeforeTargets="InitializeSourceControlInformation">
|
|
<Exec
|
|
Command="git describe --long --always --dirty --exclude=* --abbrev=8"
|
|
ConsoleToMSBuild="true"
|
|
ContinueOnError="true"
|
|
IgnoreExitCode="true"
|
|
>
|
|
<Output TaskParameter="ExitCode" PropertyName="ErrorCode"/>
|
|
<Output PropertyName="SourceRevisionId" TaskParameter="ConsoleOutput" Condition="'$(ErrorCode)'=='0'"/>
|
|
</Exec>
|
|
<Message Text="git describe exit code: $(ErrorCode)"/>
|
|
</Target>
|
|
</Project>
|