mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 23:46:27 +00:00
3851c95d4d
Bumps [EmbedIO](https://github.com/unosquare/embedio) from 2.9.1 to 2.9.2. - [Release notes](https://github.com/unosquare/embedio/releases) - [Commits](https://github.com/unosquare/embedio/commits) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
50 lines
1.7 KiB
XML
50 lines
1.7 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFrameworks>netstandard2.0</TargetFrameworks>
|
|
|
|
<PackageId>SpotifyAPI.Web.Auth</PackageId>
|
|
<Title>SpotifyAPI.Web.Auth</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>
|
|
Authorization Flows for the 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>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<DocumentationFile>bin\Debug\netstandard2.0\SpotifyAPI.Web.Auth.xml</DocumentationFile>
|
|
<NoWarn>1701;1702;1705;1591</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<DocumentationFile>bin\Release\netstandard2.0\SpotifyAPI.Web.Auth.xml</DocumentationFile>
|
|
<NoWarn>1701;1702;1705;1591</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="EmbedIO" Version="2.9.2">
|
|
<PrivateAssets>None</PrivateAssets>
|
|
</PackageReference>
|
|
<ProjectReference Include="..\SpotifyAPI.Web\SpotifyAPI.Web.csproj">
|
|
<SpecificVersion>False</SpecificVersion>
|
|
<PrivateAssets>None</PrivateAssets>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Resources\**\*" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Properties\" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|