2018-12-22 20:12:57 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-08-24 13:10:13 +01:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2022-11-18 10:38:02 +00:00
|
|
|
|
<TargetFrameworks>net7.0;net6.0;net5.0;netstandard2.1</TargetFrameworks>
|
2020-11-13 13:43:00 +00:00
|
|
|
|
<LangVersion>9.0</LangVersion>
|
2020-05-25 17:00:38 +01:00
|
|
|
|
<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>
|
|
|
|
|
|
2020-11-14 09:21:38 +00:00
|
|
|
|
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
|
2020-06-04 19:29:33 +01:00
|
|
|
|
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
|
2018-08-24 13:10:13 +01:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-11-23 20:36:33 +00:00
|
|
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All"/>
|
2023-04-11 19:54:53 +01:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3">
|
2019-07-17 16:26:35 +01:00
|
|
|
|
<PrivateAssets>None</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
2018-09-04 13:39:07 +01:00
|
|
|
|
</ItemGroup>
|
2020-12-26 17:28:44 +00:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<AnalysisMode>AllEnabledByDefault</AnalysisMode>
|
|
|
|
|
</PropertyGroup>
|
2018-08-24 13:10:13 +01:00
|
|
|
|
</Project>
|