17 lines
617 B
XML
17 lines
617 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
</PropertyGroup>
|
|
<Import Project="../MainSlnCommon.props" />
|
|
<PropertyGroup>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<Nullable>disable</Nullable>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Vortice.DirectInput" />
|
|
<PackageReference Include="Vortice.XInput" />
|
|
<PackageReference Include="ppy.SDL2-CS" ExcludeAssets="native;contentFiles" />
|
|
<ProjectReference Include="$(ProjectDir)../BizHawk.Client.Common/BizHawk.Client.Common.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|