1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 05:00:19 -05:00

Fix Git hash

This commit is contained in:
Vince Grassia 2025-03-24 17:46:10 -04:00
parent 6284df7aa9
commit 653b12a731
No known key found for this signature in database
GPG Key ID: 9AD7505E8448CC08

View File

@ -56,16 +56,11 @@
This section is for getting & setting the gitHash value, which can easily be accessed This section is for getting & setting the gitHash value, which can easily be accessed
via the Core.Utilities.AssemblyHelpers class. via the Core.Utilities.AssemblyHelpers class.
--> -->
<Target Name="SetSourceRevisionId" BeforeTargets="CoreGenerateAssemblyInfo"> <Target Name="WriteRevision" BeforeTargets="CoreGenerateAssemblyInfo">
<Exec Command="git describe --long --always --dirty --exclude=* --abbrev=8" ConsoleToMSBuild="True" IgnoreExitCode="False">
<Output PropertyName="SourceRevisionId" TaskParameter="ConsoleOutput"/>
</Exec>
</Target>
<Target Name="WriteRevision" AfterTargets="SetSourceRevisionId">
<ItemGroup> <ItemGroup>
<AssemblyAttribute Include="System.Reflection.AssemblyMetadataAttribute"> <AssemblyAttribute Include="System.Reflection.AssemblyMetadataAttribute">
<_Parameter1>GitHash</_Parameter1> <_Parameter1>GitHash</_Parameter1>
<_Parameter2>$(SourceRevisionId)</_Parameter2> <_Parameter2>HASH_HERE</_Parameter2>
</AssemblyAttribute> </AssemblyAttribute>
</ItemGroup> </ItemGroup>
</Target> </Target>