2018-12-22 20:12:57 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-08-24 13:10:13 +01:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2019-06-03 14:18:10 +01:00
|
|
|
|
<TargetFrameworks>net462;netstandard2.0</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.Auth.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.Auth.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>
|
2019-06-03 14:18:10 +01:00
|
|
|
|
<PackageReference Include="EmbedIO" Version="2.8.0" />
|
2018-08-24 13:10:13 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\SpotifyAPI.Web\SpotifyAPI.Web.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<EmbeddedResource Include="Resources\**\*" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Folder Include="Properties\" />
|
|
|
|
|
</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>
|