-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCODBO4.csproj
25 lines (22 loc) · 1.1 KB
/
CODBO4.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<PackageId>codbo4-csharp</PackageId>
<Version>1.0.1</Version>
<Authors>mostlyash</Authors>
<Description>An (under development) C# library for accessing the Call of Duty: Black Ops 4 API</Description>
<PackageLicenseUrl>https://github.com/mostlyash/codbo4-csharp/blob/master/LICENSE.md</PackageLicenseUrl>
<PackageIconUrl>https://raw.githubusercontent.com/mostlyash/codbo4-csharp/master/codbo4_icon.png</PackageIconUrl>
<RepositoryUrl>https://github.com/mostlyash/codbo4-csharp.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReleaseNotes>Fixed returning different multiplayer and blackout stats
Added support for getting user matches
Updated API and usage examples</PackageReleaseNotes>
<PackageTags>cod bo4 tracker api wrapper</PackageTags>
<Company>mostlyash</Company>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" />
</ItemGroup>
</Project>