2018-08-24 13:10:13 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2018-09-04 13:39:07 +01:00
|
|
|
<TargetFrameworks>netstandard2.0;net46</TargetFrameworks>
|
2018-08-24 13:10:13 +01:00
|
|
|
</PropertyGroup>
|
|
|
|
|
2018-08-24 13:30:50 +01:00
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
<DocumentationFile>bin\Debug\netstandard2.0\SpotifyAPI.Web.xml</DocumentationFile>
|
2018-08-24 13:57:37 +01:00
|
|
|
<NoWarn>1701;1702;1705;1591</NoWarn>
|
2018-08-24 13:30:50 +01:00
|
|
|
</PropertyGroup>
|
|
|
|
|
2018-08-24 13:51:48 +01:00
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
<DocumentationFile>bin\Release\netstandard2.0\SpotifyAPI.Web.xml</DocumentationFile>
|
2018-08-24 13:57:37 +01:00
|
|
|
<NoWarn>1701;1702;1705;1591</NoWarn>
|
2018-08-24 13:51:48 +01:00
|
|
|
</PropertyGroup>
|
|
|
|
|
2018-08-24 13:10:13 +01:00
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2018-09-04 13:39:07 +01:00
|
|
|
<ItemGroup Condition=" '$(TargetFramework)' == 'net46' ">
|
|
|
|
<Reference Include="System.Net" />
|
|
|
|
<Reference Include="System.Net.Http" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2018-08-24 13:10:13 +01:00
|
|
|
</Project>
|