-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathWarframeNET.csproj
More file actions
34 lines (29 loc) · 1.34 KB
/
WarframeNET.csproj
File metadata and controls
34 lines (29 loc) · 1.34 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputType>Library</OutputType>
</PropertyGroup>
<PropertyGroup>
<TargetFramework>netstandard1.4</TargetFramework>
<PackageId>Warframe.NET</PackageId>
<PackageVersion>1.1.4</PackageVersion>
<Authors>Erlite</Authors>
<Description>.NET Standard 1.4 Asynchronous wrapper for Warframe's World State API</Description>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageReleaseNotes>Added support for NexusStats player profile fetching.</PackageReleaseNotes>
<Copyright>Copyright 2017 (c) Erlite. All rights reserved.</Copyright>
<PackageTags>warframe wrapper net api</PackageTags>
<AssemblyName>WarframeNET</AssemblyName>
<RootNamespace>WarframeNET</RootNamespace>
<ApplicationIcon />
<OutputTypeEx>library</OutputTypeEx>
<StartupObject />
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Version>1.0.5.6</Version>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>bin\Release\netstandard1.4\WarframeNET.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="10.0.2" />
</ItemGroup>
</Project>