forked from kamranayub/igdb-dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIGDB.csproj
More file actions
43 lines (36 loc) · 1.96 KB
/
IGDB.csproj
File metadata and controls
43 lines (36 loc) · 1.96 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
35
36
37
38
39
40
41
42
43
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<NuspecProperties>version=$(PackageVersion)</NuspecProperties>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<OutputPath>lib</OutputPath>
<!-- Nuget Publishing -->
<PackageId>gaseous.IGDB</PackageId>
<Description>This is a fork of Karmran Ayub's IGDB APIv4 games database .NET Standard 2.0 wrapper. For detailed usage, see https://github.com/kamranayub/igdb-dotnet/blob/master/README.md</Description>
<Authors>Kamran Ayub</Authors>
<Copyright>Copyright 2020-2022 Kamran Ayub</Copyright>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/gaseous-project/igdb-dotnet</PackageProjectUrl>
<RepositoryBranch>main</RepositoryBranch>
<RepositoryUrl>https://github.com/gaseous-project/igdb-dotnet</RepositoryUrl>
<PackageTags>igdb dotnet games giantbomb gog steam origin</PackageTags>
<PackageIconUrl>https://www.igdb.com/apple-touch-icon-72x72.png</PackageIconUrl>
<PackageReleaseNotes>See https://github.com/kamranayub/igdb-dotnet/releases</PackageReleaseNotes>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</PropertyGroup>
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Http.Polly" Version="9.0.5" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" developmentDependency="true" />
<PackageReference Include="RestEase" Version="1.5.5" />
</ItemGroup>
</Project>