Retarget BizHawk.Common to .NET Standard 2.0

This commit is contained in:
YoshiRulz 2020-01-23 08:56:46 +10:00
parent c7801b8ce2
commit 97cb9b47f1
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 3 additions and 12 deletions

View File

@ -3,24 +3,15 @@
<PropertyGroup>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<OutputPath>../output/dll</OutputPath>
<TargetFramework>net48</TargetFramework>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.0" PrivateAssets="All" />
<!--<Reference Include="Microsoft.CSharp" />-->
<!--<Reference Include="System" />-->
<Reference Include="System.ComponentModel.DataAnnotations" />
<!--<Reference Include="System.Core" />-->
<!--<Reference Include="System.Data" />-->
<!--<Reference Include="System.Data.DataSetExtensions" />-->
<!--<Reference Include="System.Xml" />-->
<!--<Reference Include="System.Xml.Linq" />-->
<PackageReference Include="System.ComponentModel.Annotations" Version="4.7.0" PrivateAssets="All" />
<PackageReference Include="System.Reflection.Emit.Lightweight" Version="4.7.0" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<Compile Include="../Version/svnrev.cs" />
<Compile Include="../Version/VersionInfo.cs" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Extensions/BinaryReaderExtensions.cs" />
</ItemGroup>
</Project>