2018-12-22 20:12:57 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-08-24 13:10:13 +01:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2020-05-16 17:48:32 +01:00
|
|
|
|
<TargetFrameworks>netstandard2.1;netstandard2.0</TargetFrameworks>
|
2020-05-25 17:00:38 +01:00
|
|
|
|
<LangVersion>8.0</LangVersion>
|
|
|
|
|
<Nullable>enable</Nullable>
|
2019-07-17 16:26:35 +01:00
|
|
|
|
<PackageId>SpotifyAPI.Web</PackageId>
|
|
|
|
|
<Title>SpotifyAPI.Web</Title>
|
|
|
|
|
<Authors>Jonas Dellinger</Authors>
|
2020-06-04 19:29:33 +01:00
|
|
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
2019-07-17 16:26:35 +01:00
|
|
|
|
<PackageProjectUrl>https://github.com/JohnnyCrazy/SpotifyAPI-NET/</PackageProjectUrl>
|
|
|
|
|
<PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance>
|
|
|
|
|
<Description>
|
2020-06-04 19:29:33 +01:00
|
|
|
|
A Client for Spotify's Web API, written in .NET
|
2019-07-17 16:26:35 +01:00
|
|
|
|
|
|
|
|
|
For more infos, visit https://github.com/JohnnyCrazy/SpotifyAPI-NET
|
|
|
|
|
</Description>
|
|
|
|
|
<PackageTags>
|
|
|
|
|
spotify api music .net c# spotify-client
|
|
|
|
|
</PackageTags>
|
2020-06-04 19:29:33 +01:00
|
|
|
|
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
|
|
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
|
|
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
|
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
|
|
|
<EmbedUntrackedSources>true</EmbedUntrackedSources>
|
|
|
|
|
<NoWarn>1591</NoWarn>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(APPVEYOR)' == 'true'">
|
|
|
|
|
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
|
2018-08-24 13:10:13 +01:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2020-06-04 19:29:33 +01:00
|
|
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All"/>
|
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>
|