-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathClashRoyaleAPI.csproj
40 lines (37 loc) · 1.6 KB
/
ClashRoyaleAPI.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Title>ClashRoyaleDotNet</Title>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>disable</Nullable>
<SignAssembly>False</SignAssembly>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageId>ClashRoyaleDotNet</PackageId>
<Authors>matous_volf</Authors>
<PackageProjectUrl>https://github.com/matousvolf/clash-royale-dotnet</PackageProjectUrl>
<Description>An unofficial .NET wrapper for Supercell's Clash Royale API.</Description>
<RepositoryUrl>https://github.com/matousvolf/clash-royale-dotnet.git</RepositoryUrl>
<PackageReleaseNotes>Full release notes: https://github.com/matousvolf/clash-royale-dotnet/releases/tag/v3.0.0</PackageReleaseNotes>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageTags>clashroyaledotnet; clashroyale.net; clashroyaleapi; clash; royale; clashroyale; cr; supercell; api; wrapper; royaleapi; dot; net; dotnet; .net; csharp; unofficial</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Product>ClashRoyaleDotNet</Product>
<NeutralLanguage>en-US</NeutralLanguage>
<PackageIcon>icon.png</PackageIcon>
<Version>$(VersionPrefix)3.0.0</Version>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
</ItemGroup>
<ItemGroup>
<None Update="icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>