Skip to content
This repository was archived by the owner on Oct 31, 2024. It is now read-only.

Commit 14c9d39

Browse files
author
Not Officer
committed
added package information
1 parent 184c1cc commit 14c9d39

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

src/Fortnite-API.Test/Fortnite-API.Test.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
1010
<PlatformTarget>x64</PlatformTarget>
11+
<DefineConstants />
1112
</PropertyGroup>
1213

1314
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">

src/Fortnite-API/Fortnite-API.csproj

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,46 @@
33
<PropertyGroup>
44
<TargetFramework>netstandard2.1</TargetFramework>
55
<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>
622
</PropertyGroup>
723

824
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
925
<DefineConstants>TRACE</DefineConstants>
1026
<PlatformTarget>x64</PlatformTarget>
27+
<DebugType>none</DebugType>
28+
<DebugSymbols>false</DebugSymbols>
1129
</PropertyGroup>
1230

1331
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
1432
<PlatformTarget>x64</PlatformTarget>
33+
<DefineConstants />
1534
</PropertyGroup>
1635

1736
<ItemGroup>
1837
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
1938
<PackageReference Include="RestSharp" Version="106.6.10" />
2039
</ItemGroup>
2140

41+
<ItemGroup>
42+
<None Include="..\..\LICENSE">
43+
<Pack>True</Pack>
44+
<PackagePath></PackagePath>
45+
</None>
46+
</ItemGroup>
47+
2248
</Project>

0 commit comments

Comments
 (0)