Skip to content

Commit 8889feb

Browse files
Automatically update Dotnet SDK
1 parent 7e6b952 commit 8889feb

24 files changed

Lines changed: 1085 additions & 41 deletions

src/TrophyApi.sln

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 17
44
VisualStudioVersion = 17.0.31903.59
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TrophyApi", "TrophyApi\TrophyApi.csproj", "{5DDE134D-5EF0-4097-BDF6-987833C0E8A1}"
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TrophyApi", "TrophyApi\TrophyApi.csproj", "{27F613F3-7312-4146-8524-871520F2F04A}"
77
EndProject
8-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TrophyApi.Test", "TrophyApi.Test\TrophyApi.Test.csproj", "{E8E523D4-76C7-41D2-99A5-23C982503675}"
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TrophyApi.Test", "TrophyApi.Test\TrophyApi.Test.csproj", "{E4E371AE-9A69-4408-93DE-706DD2FAA0C3}"
99
EndProject
1010
Global
1111
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -16,13 +16,13 @@ Global
1616
HideSolutionNode = FALSE
1717
EndGlobalSection
1818
GlobalSection(ProjectConfigurationPlatforms) = postSolution
19-
{5DDE134D-5EF0-4097-BDF6-987833C0E8A1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
20-
{5DDE134D-5EF0-4097-BDF6-987833C0E8A1}.Debug|Any CPU.Build.0 = Debug|Any CPU
21-
{5DDE134D-5EF0-4097-BDF6-987833C0E8A1}.Release|Any CPU.ActiveCfg = Release|Any CPU
22-
{5DDE134D-5EF0-4097-BDF6-987833C0E8A1}.Release|Any CPU.Build.0 = Release|Any CPU
23-
{E8E523D4-76C7-41D2-99A5-23C982503675}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
24-
{E8E523D4-76C7-41D2-99A5-23C982503675}.Debug|Any CPU.Build.0 = Debug|Any CPU
25-
{E8E523D4-76C7-41D2-99A5-23C982503675}.Release|Any CPU.ActiveCfg = Release|Any CPU
26-
{E8E523D4-76C7-41D2-99A5-23C982503675}.Release|Any CPU.Build.0 = Release|Any CPU
19+
{27F613F3-7312-4146-8524-871520F2F04A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
20+
{27F613F3-7312-4146-8524-871520F2F04A}.Debug|Any CPU.Build.0 = Debug|Any CPU
21+
{27F613F3-7312-4146-8524-871520F2F04A}.Release|Any CPU.ActiveCfg = Release|Any CPU
22+
{27F613F3-7312-4146-8524-871520F2F04A}.Release|Any CPU.Build.0 = Release|Any CPU
23+
{E4E371AE-9A69-4408-93DE-706DD2FAA0C3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
24+
{E4E371AE-9A69-4408-93DE-706DD2FAA0C3}.Debug|Any CPU.Build.0 = Debug|Any CPU
25+
{E4E371AE-9A69-4408-93DE-706DD2FAA0C3}.Release|Any CPU.ActiveCfg = Release|Any CPU
26+
{E4E371AE-9A69-4408-93DE-706DD2FAA0C3}.Release|Any CPU.Build.0 = Release|Any CPU
2727
EndGlobalSection
2828
EndGlobal

src/TrophyApi/Admin/AdminClient.cs

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,20 @@ public partial class AdminClient
1010
internal AdminClient(RawClient client)
1111
{
1212
_client = client;
13-
Streaks = new StreaksClient(_client);
1413
Attributes = new AttributesClient(_client);
1514
Metrics = new MetricsClient(_client);
15+
Leaderboards = new LeaderboardsClient(_client);
16+
Streaks = new StreaksClient(_client);
1617
Points = new PointsClient(_client);
1718
}
1819

19-
public StreaksClient Streaks { get; }
20-
2120
public AttributesClient Attributes { get; }
2221

2322
public MetricsClient Metrics { get; }
2423

24+
public LeaderboardsClient Leaderboards { get; }
25+
26+
public StreaksClient Streaks { get; }
27+
2528
public PointsClient Points { get; }
2629
}

src/TrophyApi/Admin/Attributes/AttributesClient.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public async Task<IEnumerable<AdminAttribute>> ListAsync(
8989
}
9090

9191
/// <summary>
92-
/// Create attributes in bulk.
92+
/// Create attributes.
9393
/// </summary>
9494
/// <example><code>
9595
/// await client.Admin.Attributes.CreateAsync(
@@ -170,7 +170,7 @@ public async Task<CreateAttributesResponse> CreateAsync(
170170
}
171171

172172
/// <summary>
173-
/// Delete attributes in bulk by ID.
173+
/// Delete attributes by ID.
174174
/// </summary>
175175
/// <example><code>
176176
/// await client.Admin.Attributes.DeleteAsync(new AttributesDeleteRequest());
@@ -236,7 +236,7 @@ public async Task<DeleteAttributesResponse> DeleteAsync(
236236
}
237237

238238
/// <summary>
239-
/// Update attributes in bulk by ID.
239+
/// Update attributes by ID.
240240
/// </summary>
241241
/// <example><code>
242242
/// await client.Admin.Attributes.UpdateAsync(

0 commit comments

Comments
 (0)