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

56 lines
1.9 KiB
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2023-11-03 22:23:54 +00:00
<TargetFrameworks>net7.0;net6.0;net5.0;netstandard2.1;netstandard2.0</TargetFrameworks>
2020-11-13 13:43:00 +00:00
<LangVersion>9.0</LangVersion>
2020-05-25 17:00:38 +01:00
<Nullable>enable</Nullable>
<PackageId>SpotifyAPI.Web.Auth</PackageId>
<Title>SpotifyAPI.Web.Auth</Title>
<Authors>Jonas Dellinger</Authors>
2020-06-04 19:29:33 +01:00
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/JohnnyCrazy/SpotifyAPI-NET/</PackageProjectUrl>
<PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance>
<Description>
2020-06-04 19:29:33 +01:00
An embedded Web Server, based on EmbeddedIO, for Spotify Web API Authorization flows
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>
<PropertyGroup Condition="'$(APPVEYOR)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All"/>
<PackageReference Include="EmbedIO" Version="3.5.2">
<PrivateAssets>None</PrivateAssets>
</PackageReference>
<ProjectReference Include="..\SpotifyAPI.Web\SpotifyAPI.Web.csproj">
<SpecificVersion>False</SpecificVersion>
<PrivateAssets>None</PrivateAssets>
</ProjectReference>
</ItemGroup>
2020-05-15 19:06:24 +01:00
<ItemGroup>
<Compile Include="..\SpotifyAPI.Web\Util\Ensure.cs" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\**\*" />
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
</Project>