2018-12-22 20:12:57 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-08-24 13:10:13 +01:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2020-05-01 19:05:28 +01:00
|
|
|
|
<TargetFrameworks>netstandard2.1</TargetFrameworks>
|
2020-05-13 22:49:54 +01:00
|
|
|
|
<!-- <GenerateDocumentationFile>true</GenerateDocumentationFile> -->
|
2019-07-17 16:26:35 +01:00
|
|
|
|
<PackageId>SpotifyAPI.Web</PackageId>
|
|
|
|
|
<Title>SpotifyAPI.Web</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>
|
|
|
|
|
An API for 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>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2019-11-11 07:27:39 +00:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.3">
|
2019-07-17 16:26:35 +01:00
|
|
|
|
<PrivateAssets>None</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
2020-05-05 04:45:33 +01:00
|
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="3.0.0">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2018-09-04 13:39:07 +01:00
|
|
|
|
</ItemGroup>
|
2018-08-24 13:10:13 +01:00
|
|
|
|
</Project>
|