mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-23 14:46:26 +00:00
45 lines
1.4 KiB
XML
45 lines
1.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFrameworks>netstandard2.1;netstandard2.0</TargetFrameworks>
|
|
<LangVersion>8.0</LangVersion>
|
|
<Nullable>enable</Nullable>
|
|
<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>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="EmbedIO" Version="3.4.3">
|
|
<PrivateAssets>None</PrivateAssets>
|
|
</PackageReference>
|
|
<ProjectReference Include="..\SpotifyAPI.Web\SpotifyAPI.Web.csproj">
|
|
<SpecificVersion>False</SpecificVersion>
|
|
<PrivateAssets>None</PrivateAssets>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="..\SpotifyAPI.Web\Util\Ensure.cs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Resources\**\*" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Properties\" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|