-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathPUBGLibrary.csproj
49 lines (42 loc) · 1.76 KB
/
PUBGLibrary.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
41
42
43
44
45
46
47
48
49
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>PUBGLibrary</AssemblyName>
<RootNamespace>PUBGLibrary</RootNamespace>
<PackageProjectUrl>https://github.com/EpicKitten/PUBGLibrary</PackageProjectUrl>
<Description>A .NET Standard PUBG API and Replay library</Description>
<PackageLicenseUrl>https://github.com/EpicKitten/PUBGLibrary/blob/master/LICENSE</PackageLicenseUrl>
<RepositoryUrl>https://github.com/EpicKitten/PUBGLibrary</RepositoryUrl>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<VersionPrefix>1.0.8</VersionPrefix>
<ApplicationIcon />
<Win32Resource />
<Authors>epickitten</Authors>
<PackageIconUrl>https://github.com/EpicKitten/PUBGLibrary/raw/master/pubgcsharp.jpg</PackageIconUrl>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>bin\Release\netstandard2.0\PUBGLibrary.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<None Remove=".gitattributes" />
<None Remove=".gitignore" />
<None Remove="LibraryTest.rsls" />
<None Remove="LICENSE" />
<None Remove="NET46LibraryTest.rsls" />
<None Remove="packages.rsls" />
<None Remove="PUBGLibrary.sln.rsls" />
<None Remove="README.md" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="11.0.1" />
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
<ItemGroup>
<Reference Include="NotificationLibrary">
<HintPath>..\NotificationLibrary\NotificationLibrary\bin\Debug\netstandard2.0\NotificationLibrary.dll</HintPath>
</Reference>
</ItemGroup>
</Project>