Added VersionNumber macro back to project

This commit is contained in:
Travis Nickles 2019-12-20 17:51:46 -06:00
parent ecc82de0c7
commit 5f0557123c

View File

@ -448,7 +448,19 @@
</ItemGroup> </ItemGroup>
<ItemGroup /> <ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Target Name="PostBuildMacros">
<GetAssemblyIdentity AssemblyFiles="$(TargetPath)">
<Output TaskParameter="Assemblies" ItemName="Targets" />
</GetAssemblyIdentity>
<ItemGroup>
<VersionNumber Include="$([System.Text.RegularExpressions.Regex]::Replace(&quot;%(Targets.Version)&quot;, &quot;^(.+?)(\.0+)$&quot;, &quot;$1&quot;))" />
</ItemGroup>
</Target>
<PropertyGroup> <PropertyGroup>
<PostBuildEventDependsOn>
$(PostBuildEventDependsOn);
PostBuildMacros;
</PostBuildEventDependsOn>
<PostBuildEvent>rem Copy compiled l18n assemblies to alt folder <PostBuildEvent>rem Copy compiled l18n assemblies to alt folder
GOTO END GOTO END
if not exist $(TargetDir)Lang mkdir $(TargetDir)Lang if not exist $(TargetDir)Lang mkdir $(TargetDir)Lang