-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConstructServices.csproj
More file actions
51 lines (45 loc) · 2.02 KB
/
ConstructServices.csproj
File metadata and controls
51 lines (45 loc) · 2.02 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
44
45
46
47
48
49
50
51
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>latest</LangVersion>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Title>Construct Game Services</Title>
<Company>Scirra</Company>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Version>1.3.0</Version>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<Authors>Thomas Gullen, Scirra Ltd</Authors>
<Product>Construct Game Services</Product>
<Description>An API for interacting with the Construct Game Services. Add Leaderboards, Broadcasts, Translations, XP, Authentication and Cloud Save into your games.</Description>
<Copyright>Scirra Ltd, 2026. All rights reserved.</Copyright>
<PackageProjectUrl>https://cgs.construct.net</PackageProjectUrl>
<PackageIcon>icon.png</PackageIcon>
<RepositoryUrl>https://github.com/Scirra/Construct-Services-DotNet-Class-Library</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>cloudsave, cloud save, leaderboards, authentication, xp, ratings, broadcasts</PackageTags>
<PackageReleaseNotes>Major update to work with latest CGS API. CGS is still in Beta, so large undocumented changes will still happen until version 2. During this period, it is imperitive you always use the latest version of this package.</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
<Compile Remove="nupkgs\**" />
<EmbeddedResource Remove="nupkgs\**" />
<None Remove="nupkgs\**" />
</ItemGroup>
<ItemGroup>
<None Remove="nuget.exe" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="JetBrains.Annotations" Version="2025.2.4" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
<None Include="$(MSBuildThisFileDirectory)README.md" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup>
<None Update="icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="LICENSE.txt">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>