Spotify.NET/SpotifyAPI.Web/SpotifyAPI.Web.csproj

27 lines
857 B
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2018-09-04 13:39:07 +01:00
<TargetFrameworks>netstandard2.0;net46</TargetFrameworks>
</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>
<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>
</Project>