2020-01-16 22:52:41 +00:00
<Project Sdk= "Microsoft.NET.Sdk" >
<PropertyGroup >
<DebugType > pdbonly</DebugType>
<DefineConstants > TRACE</DefineConstants>
<ErrorReport > prompt</ErrorReport>
<Optimize > true</Optimize>
<OutputPath > ./bin</OutputPath>
<PlatformTarget > AnyCPU</PlatformTarget>
<TargetFramework > netstandard2.0</TargetFramework>
</PropertyGroup>
2020-01-19 02:53:24 +00:00
<ItemGroup >
<Compile Include= "svnrev.cs" /> <!-- Not checked - in, but needs to be added to the compile list which is generated before the pre - build event, so this will make MSBuild pretend it's there when cloning. -->
</ItemGroup>
2020-01-16 22:52:41 +00:00
<Target Name= "Build" >
<!-- when is this called? it's never run and failed on Linux -->
<Exec Command= ""$(MSBuildProjectDirectory)\subwcrev.bat" $(MSBuildProjectDirectory)" Condition= " '$(OS)' == 'Windows_NT' " WorkingDirectory= "$(MSBuildProjectDirectory)" />
</Target>
<Target Name= "PreBuild" AfterTargets= "PreBuildEvent" >
<Exec Command= '"$(ProjectDir)..\Build\BizHawk.Build.Tool.exe" GIT_REV --wc "$(ProjectDir).." --template "$(ProjectDir)svnrev_template" --out "$(ProjectDir)svnrev.cs"' Condition= " '$(OS)' == 'Windows_NT' " />
<Exec Command= '"$(ProjectDir)../Build/standin.sh"' Condition= " '$(OS)' != 'Windows_NT' " />
</Target>
2018-02-16 00:10:43 +00:00
</Project>