19 lines
833 B
XML
19 lines
833 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<Import Project="$(SolutionDir)MainSlnCommon.props" />
|
|
<PropertyGroup>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<TargetFrameworks>netstandard2.0;netcoreapp3.1</TargetFrameworks>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" PrivateAssets="All" />
|
|
<PackageReference Include="System.Drawing.Common" Version="4.7.0" PrivateAssets="All" />
|
|
<PackageReference Include="OpenTK" Version="3.0.1" PrivateAssets="All" />
|
|
<ProjectReference Include="$(SolutionDir)BizHawk.Common/BizHawk.Common.csproj" />
|
|
<Compile Include="$(SolutionDir)Version/svnrev.cs" />
|
|
<Compile Include="$(SolutionDir)Version/VersionInfo.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Update="IGuiRenderer.cs" SubType="Code" />
|
|
</ItemGroup>
|
|
</Project>
|