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

37 lines
1.4 KiB
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2020-05-01 19:05:28 +01:00
<TargetFrameworks>netstandard2.1</TargetFrameworks>
<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>
</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="12.0.3">
<PrivateAssets>None</PrivateAssets>
</PackageReference>
2018-09-04 13:39:07 +01:00
</ItemGroup>
</Project>