1
0
mirror of https://github.com/chylex/.NET-Community-Toolkit.git synced 2024-07-26 22:28:54 +02:00
.NET-Community-Toolkit/Directory.Build.targets
2021-11-01 16:36:45 +01:00

14 lines
484 B
XML

<Project>
<Import Project="$(BuildToolsDirectory)Community.Toolkit.Common.targets" />
<Target Name="AddCommitHashToAssemblyAttributes" BeforeTargets="GetAssemblyAttributes">
<ItemGroup>
<AssemblyAttribute Include="System.Reflection.AssemblyMetadataAttribute" Condition="'$(SourceRevisionId)' != ''">
<_Parameter1>CommitHash</_Parameter1>
<_Parameter2>$(SourceRevisionId)</_Parameter2>
</AssemblyAttribute>
</ItemGroup>
</Target>
</Project>