mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-24 06:56:27 +00:00
Setup projects for nuget publishing
This commit is contained in:
parent
3e12f806db
commit
f04f175775
@ -6,20 +6,31 @@
|
|||||||
<PackageId>SpotifyAPI.Web.Auth</PackageId>
|
<PackageId>SpotifyAPI.Web.Auth</PackageId>
|
||||||
<Title>SpotifyAPI.Web.Auth</Title>
|
<Title>SpotifyAPI.Web.Auth</Title>
|
||||||
<Authors>Jonas Dellinger</Authors>
|
<Authors>Jonas Dellinger</Authors>
|
||||||
<PackageLicenseUrl>https://github.com/JohnnyCrazy/SpotifyAPI-NET/blob/master/LICENSE</PackageLicenseUrl>
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
||||||
<PackageProjectUrl>https://github.com/JohnnyCrazy/SpotifyAPI-NET/</PackageProjectUrl>
|
<PackageProjectUrl>https://github.com/JohnnyCrazy/SpotifyAPI-NET/</PackageProjectUrl>
|
||||||
<PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance>
|
<PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance>
|
||||||
<Description>
|
<Description>
|
||||||
Authorization Flows for the Spotify's Web API, written in .NET
|
An embedded Web Server, based on EmbeddedIO, for Spotify Web API Authorization flows
|
||||||
|
|
||||||
For more infos, visit https://github.com/JohnnyCrazy/SpotifyAPI-NET
|
For more infos, visit https://github.com/JohnnyCrazy/SpotifyAPI-NET
|
||||||
</Description>
|
</Description>
|
||||||
<PackageTags>
|
<PackageTags>
|
||||||
spotify api music .net c# spotify-client
|
spotify api music .net c# spotify-client
|
||||||
</PackageTags>
|
</PackageTags>
|
||||||
|
<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>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All"/>
|
||||||
<PackageReference Include="EmbedIO" Version="3.4.3">
|
<PackageReference Include="EmbedIO" Version="3.4.3">
|
||||||
<PrivateAssets>None</PrivateAssets>
|
<PrivateAssets>None</PrivateAssets>
|
||||||
</PackageReference>
|
</PackageReference>
|
||||||
|
@ -5,7 +5,6 @@ namespace SpotifyAPI.Web
|
|||||||
public class LibrarySaveAlbumsRequest : RequestParams
|
public class LibrarySaveAlbumsRequest : RequestParams
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="ids">
|
/// <param name="ids">
|
||||||
/// A comma-separated list of the Spotify IDs.
|
/// A comma-separated list of the Spotify IDs.
|
||||||
|
@ -4,24 +4,34 @@
|
|||||||
<TargetFrameworks>netstandard2.1;netstandard2.0</TargetFrameworks>
|
<TargetFrameworks>netstandard2.1;netstandard2.0</TargetFrameworks>
|
||||||
<LangVersion>8.0</LangVersion>
|
<LangVersion>8.0</LangVersion>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
<!-- <GenerateDocumentationFile>true</GenerateDocumentationFile> -->
|
|
||||||
<PackageId>SpotifyAPI.Web</PackageId>
|
<PackageId>SpotifyAPI.Web</PackageId>
|
||||||
<Title>SpotifyAPI.Web</Title>
|
<Title>SpotifyAPI.Web</Title>
|
||||||
<Authors>Jonas Dellinger</Authors>
|
<Authors>Jonas Dellinger</Authors>
|
||||||
<PackageLicenseUrl>https://github.com/JohnnyCrazy/SpotifyAPI-NET/blob/master/LICENSE</PackageLicenseUrl>
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
||||||
<PackageProjectUrl>https://github.com/JohnnyCrazy/SpotifyAPI-NET/</PackageProjectUrl>
|
<PackageProjectUrl>https://github.com/JohnnyCrazy/SpotifyAPI-NET/</PackageProjectUrl>
|
||||||
<PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance>
|
<PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance>
|
||||||
<Description>
|
<Description>
|
||||||
An API for Spotify's Web API, written in .NET
|
A Client for Spotify's Web API, written in .NET
|
||||||
|
|
||||||
For more infos, visit https://github.com/JohnnyCrazy/SpotifyAPI-NET
|
For more infos, visit https://github.com/JohnnyCrazy/SpotifyAPI-NET
|
||||||
</Description>
|
</Description>
|
||||||
<PackageTags>
|
<PackageTags>
|
||||||
spotify api music .net c# spotify-client
|
spotify api music .net c# spotify-client
|
||||||
</PackageTags>
|
</PackageTags>
|
||||||
|
<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>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All"/>
|
||||||
<PackageReference Include="Newtonsoft.Json" Version="12.0.3">
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.3">
|
||||||
<PrivateAssets>None</PrivateAssets>
|
<PrivateAssets>None</PrivateAssets>
|
||||||
</PackageReference>
|
</PackageReference>
|
||||||
|
Loading…
Reference in New Issue
Block a user