2020-01-16 22:52:41 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2020-01-23 18:59:27 +00:00
|
|
|
|
<Import Project="$(SolutionDir)Common.props" />
|
2020-01-16 22:52:41 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
2020-01-20 18:42:09 +00:00
|
|
|
|
<TargetFramework>net48</TargetFramework>
|
2020-01-16 22:52:41 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.0" PrivateAssets="All" />
|
|
|
|
|
<!--<Reference Include="Microsoft.CSharp" />-->
|
|
|
|
|
<!--<Reference Include="System" />-->
|
|
|
|
|
<!--<Reference Include="System.Core" />-->
|
|
|
|
|
<!--<Reference Include="System.Data" />-->
|
|
|
|
|
<!--<Reference Include="System.Data.DataSetExtensions" />-->
|
|
|
|
|
<!--<Reference Include="System.Xml" />-->
|
|
|
|
|
<!--<Reference Include="System.Xml.Linq" />-->
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" PrivateAssets="All" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2020-01-23 18:59:27 +00:00
|
|
|
|
<ProjectReference Include="$(SolutionDir)BizHawk.Emulation.DiscSystem/BizHawk.Emulation.DiscSystem.csproj" />
|
2020-01-16 22:52:41 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2020-01-23 18:59:27 +00:00
|
|
|
|
<Compile Include="$(SolutionDir)Version/svnrev.cs" />
|
|
|
|
|
<Compile Include="$(SolutionDir)Version/VersionInfo.cs" />
|
2020-01-16 22:52:41 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Remove="Interfaces/IHookManager.cs" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|