BizHawk/ExternalCoreProjects/Virtu/Virtu.csproj

19 lines
712 B
XML
Raw Normal View History

2020-02-22 20:24:48 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
</PropertyGroup>
2020-02-22 20:24:48 +00:00
<Import Project="$(ProjectDir)../../Common.props" />
2020-02-22 20:05:22 +00:00
<PropertyGroup>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<Nullable>disable</Nullable>
2020-02-22 20:05:22 +00:00
</PropertyGroup>
<ItemGroup>
<Compile Update="Cpu.Data.cs" DependentUpon="Cpu.cs" />
<Compile Update="Memory.Data.cs" DependentUpon="Memory.cs" />
<Compile Update="Video.Data.cs" DependentUpon="Video.cs" />
</ItemGroup>
2020-02-22 20:24:48 +00:00
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Copy SourceFiles="$(TargetDir)$(TargetFileName)" DestinationFolder="$(ProjectDir)../../References" />
</Target>
2020-02-22 20:05:22 +00:00
</Project>