mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
Sort TargetFrameworks in the following projects with net20 first, to avoid warnings from CUETools.CTDB.EACPlugin: CUETools.AccurateRip, CUETools.CDImage, CUETools.CTDB, CUETools.CTDB.Types, CUETools.Codecs, CUETools.Parity Change order: <TargetFrameworks>net47;net20;netstandard2.0</TargetFrameworks> -> <TargetFrameworks>net20;net47;netstandard2.0</TargetFrameworks> - Fixes the following warnings after opening CUETools.sln in Visual Studio, e.g.: The referenced project 'CUETools.AccurateRip' is targeting a higher framework version (4.7) than this project’s current target framework version (2.0). This may lead to build failures if types from assemblies outside this project’s target framework are used by any project in the dependency chain. Project: CUETools.CTDB.EACPlugin
32 lines
1.2 KiB
XML
32 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net20;net47;netstandard2.0</TargetFrameworks>
|
|
<Version>2.1.7.0</Version>
|
|
<AssemblyName>CUETools.AccurateRip</AssemblyName>
|
|
<RootNamespace>CUETools.AccurateRip</RootNamespace>
|
|
<Product>CUETools</Product>
|
|
<Description>A library for calculating AccurateRip checksums, CRC32 and Reed-solomon codes of CD audio.</Description>
|
|
<Copyright>Copyright (c) 2008-2018 Grigory Chudov</Copyright>
|
|
<Authors>Grigory Chudov</Authors>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<OutputPath>..\bin\$(Configuration)\</OutputPath>
|
|
<RepositoryUrl>https://github.com/gchudov/cuetools.net</RepositoryUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
<Company />
|
|
</PropertyGroup>
|
|
|
|
<ItemDefinitionGroup>
|
|
<ProjectReference>
|
|
<Private>False</Private>
|
|
</ProjectReference>
|
|
</ItemDefinitionGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\CUETools.CDImage\CUETools.CDImage.csproj" />
|
|
<ProjectReference Include="..\CUETools.Codecs\CUETools.Codecs.csproj" />
|
|
<ProjectReference Include="..\CUETools.Parity\CUETools.Parity.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|