|
3 | 3 | <PropertyGroup> |
4 | 4 | <TargetFramework>netstandard2.1</TargetFramework> |
5 | 5 | <RootNamespace>Fortnite_API</RootNamespace> |
| 6 | + <Description>C# wrapper for https://fortnite-api.com</Description> |
| 7 | + <PackageId>Fortnite-API-Wrapper</PackageId> |
| 8 | + <Product>Fortnite-API-Wrapper</Product> |
| 9 | + <PackageProjectUrl>https://fortnite-api.com</PackageProjectUrl> |
| 10 | + <RepositoryUrl>https://github.com/Fortnite-API/csharp-wrapper</RepositoryUrl> |
| 11 | + <NeutralLanguage /> |
| 12 | + <PackageTags>fortnite, fortniteapi, fortnite-api, fortnite-api.com</PackageTags> |
| 13 | + <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
| 14 | + <PackageLicenseExpression></PackageLicenseExpression> |
| 15 | + <Authors>Fortnite-API, NotOfficer</Authors> |
| 16 | + <PackageLicenseFile>LICENSE</PackageLicenseFile> |
| 17 | + <Version>1.0.1</Version> |
| 18 | + <Company>Fortnite-API</Company> |
| 19 | + <PackageIconUrl>https://fortnite-api.com/logo.png</PackageIconUrl> |
| 20 | + <RepositoryType>git</RepositoryType> |
| 21 | + <Copyright>Copyright (c) 2019 Fortnite-API.com</Copyright> |
6 | 22 | </PropertyGroup> |
7 | 23 |
|
8 | 24 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> |
9 | 25 | <DefineConstants>TRACE</DefineConstants> |
10 | 26 | <PlatformTarget>x64</PlatformTarget> |
| 27 | + <DebugType>none</DebugType> |
| 28 | + <DebugSymbols>false</DebugSymbols> |
11 | 29 | </PropertyGroup> |
12 | 30 |
|
13 | 31 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> |
14 | 32 | <PlatformTarget>x64</PlatformTarget> |
| 33 | + <DefineConstants /> |
15 | 34 | </PropertyGroup> |
16 | 35 |
|
17 | 36 | <ItemGroup> |
18 | 37 | <PackageReference Include="Newtonsoft.Json" Version="12.0.3" /> |
19 | 38 | <PackageReference Include="RestSharp" Version="106.6.10" /> |
20 | 39 | </ItemGroup> |
21 | 40 |
|
| 41 | + <ItemGroup> |
| 42 | + <None Include="..\..\LICENSE"> |
| 43 | + <Pack>True</Pack> |
| 44 | + <PackagePath></PackagePath> |
| 45 | + </None> |
| 46 | + </ItemGroup> |
| 47 | + |
22 | 48 | </Project> |
0 commit comments