2018-12-22 20:12:57 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-08-24 13:10:13 +01:00
|
|
|
|
<PropertyGroup>
|
2019-06-30 13:45:01 +01:00
|
|
|
|
<TargetFrameworks>netstandard2.0</TargetFrameworks>
|
2019-07-17 16:26:35 +01:00
|
|
|
|
|
|
|
|
|
<PackageId>SpotifyAPI.Web.Auth</PackageId>
|
|
|
|
|
<Title>SpotifyAPI.Web.Auth</Title>
|
|
|
|
|
<Authors>Jonas Dellinger</Authors>
|
|
|
|
|
<PackageLicenseUrl>https://github.com/JohnnyCrazy/SpotifyAPI-NET/blob/master/LICENSE</PackageLicenseUrl>
|
|
|
|
|
<PackageProjectUrl>https://github.com/JohnnyCrazy/SpotifyAPI-NET/</PackageProjectUrl>
|
|
|
|
|
<PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance>
|
|
|
|
|
<Description>
|
|
|
|
|
Authorization Flows for the Spotify's Web API, written in .NET
|
|
|
|
|
|
|
|
|
|
For more infos, visit https://github.com/JohnnyCrazy/SpotifyAPI-NET
|
|
|
|
|
</Description>
|
|
|
|
|
<PackageTags>
|
|
|
|
|
spotify api music .net c# spotify-client
|
|
|
|
|
</PackageTags>
|
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>
|
2019-07-17 16:26:35 +01:00
|
|
|
|
|
2018-08-24 13:10:13 +01:00
|
|
|
|
<ItemGroup>
|
2019-07-17 16:26:35 +01:00
|
|
|
|
<PackageReference Include="EmbedIO" Version="2.9.1">
|
|
|
|
|
<PrivateAssets>None</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<ProjectReference Include="..\SpotifyAPI.Web\SpotifyAPI.Web.csproj">
|
|
|
|
|
<SpecificVersion>False</SpecificVersion>
|
|
|
|
|
<PrivateAssets>None</PrivateAssets>
|
|
|
|
|
</ProjectReference>
|
2018-08-24 13:10:13 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<EmbeddedResource Include="Resources\**\*" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Folder Include="Properties\" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|