24 lines
1.3 KiB
Plaintext
24 lines
1.3 KiB
Plaintext
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<VersionTxt>$(RepoRoot)\version.txt</VersionTxt>
|
||
|
<GlobalAssemblyVersionInfoPath>$(SrcManagedRoot)\GlobalAssemblyVersionInfo.cs</GlobalAssemblyVersionInfoPath>
|
||
|
<UnmanagedVersionPath>$(RepoRoot)\src\unmanaged\version.h</UnmanagedVersionPath>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<Target Name="GenerateVersionFiles" BeforeTargets="CoreCompile" Inputs="$(VersionTxt)" Outputs="$(GlobalAssemblyVersionInfoPath);$(UnmanagedVersionPath)">
|
||
|
<ReadLinesFromFile File="$(VersionTxt)">
|
||
|
<Output TaskParameter="Lines" ItemName="VersionTextLines"/>
|
||
|
</ReadLinesFromFile>
|
||
|
<PropertyGroup>
|
||
|
<BuildVersion>@(VersionTextLines)</BuildVersion>
|
||
|
</PropertyGroup>
|
||
|
<WriteLinesToFile File="$(GlobalAssemblyVersionInfoPath)" Lines="[assembly: System.Reflection.AssemblyVersion("$(BuildVersion)")];[assembly: System.Reflection.AssemblyFileVersion("$(BuildVersion)")]" Overwrite="true" />
|
||
|
<WriteLinesToFile File="$(UnmanagedVersionPath)" Lines="#define FILE_VERSION $(BuildVersion.Replace(".",","));#define PRODUCT_VERSION $(BuildVersion)" Overwrite="true" />
|
||
|
<ItemGroup>
|
||
|
<Compile Condition="Exists('$(GlobalAssemblyVersionInfoPath)')" Include="$(GlobalAssemblyVersionInfoPath)" />
|
||
|
</ItemGroup>
|
||
|
</Target>
|
||
|
|
||
|
</Project>
|