-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathGiantBomb.Api.csproj
More file actions
34 lines (30 loc) · 1.34 KB
/
Copy pathGiantBomb.Api.csproj
File metadata and controls
34 lines (30 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>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>GiantBomb.Api</AssemblyName>
<RootNamespace>GiantBomb.Api</RootNamespace>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Version>3.0.0</Version>
<Authors>kayub</Authors>
<Company>kayub</Company>
<Product>GiantBomb API (C#)</Product>
<Description>Restful API wrapper for the GiantBomb games database public API</Description>
<Copyright>Copyright © kayub 2015</Copyright>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageProjectUrl>https://github.com/kamranayub/GiantBomb-CSharp</PackageProjectUrl>
<PackageId>GiantBomb.Api</PackageId>
<RepositoryUrl>https://github.com/kamranayub/GiantBomb-CSharp</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
<PackageTags>giantbomb games database sdk gaming</PackageTags>
<PackageReleaseNotes>For changes, see README.</PackageReleaseNotes>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="RestSharp" Version="112.0.0" />
</ItemGroup>
<ItemGroup>
<None Include="../LICENSE.txt" Pack="true" PackagePath="$(PackageLicenseFile)" />
</ItemGroup>
</Project>