Skip to content

Commit 215e5b5

Browse files
Automatically update Dotnet SDK
1 parent 67dbc31 commit 215e5b5

4 files changed

Lines changed: 15 additions & 15 deletions

File tree

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", "{2A1709DC-8188-456A-9AA8-5F9E563DCC1A}"
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TrophyApi", "TrophyApi\TrophyApi.csproj", "{0BD6B80D-737C-4D22-B40D-EB58A0EE64AD}"
77
EndProject
8-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TrophyApi.Test", "TrophyApi.Test\TrophyApi.Test.csproj", "{E3E3EEBB-7D32-4EB2-B49D-18BD94E44002}"
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TrophyApi.Test", "TrophyApi.Test\TrophyApi.Test.csproj", "{11B58045-2083-4FC1-A364-BC4DC3C1DF9C}"
99
EndProject
1010
Global
1111
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -16,13 +16,13 @@ Global
1616
HideSolutionNode = FALSE
1717
EndGlobalSection
1818
GlobalSection(ProjectConfigurationPlatforms) = postSolution
19-
{2A1709DC-8188-456A-9AA8-5F9E563DCC1A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
20-
{2A1709DC-8188-456A-9AA8-5F9E563DCC1A}.Debug|Any CPU.Build.0 = Debug|Any CPU
21-
{2A1709DC-8188-456A-9AA8-5F9E563DCC1A}.Release|Any CPU.ActiveCfg = Release|Any CPU
22-
{2A1709DC-8188-456A-9AA8-5F9E563DCC1A}.Release|Any CPU.Build.0 = Release|Any CPU
23-
{E3E3EEBB-7D32-4EB2-B49D-18BD94E44002}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
24-
{E3E3EEBB-7D32-4EB2-B49D-18BD94E44002}.Debug|Any CPU.Build.0 = Debug|Any CPU
25-
{E3E3EEBB-7D32-4EB2-B49D-18BD94E44002}.Release|Any CPU.ActiveCfg = Release|Any CPU
26-
{E3E3EEBB-7D32-4EB2-B49D-18BD94E44002}.Release|Any CPU.Build.0 = Release|Any CPU
19+
{0BD6B80D-737C-4D22-B40D-EB58A0EE64AD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
20+
{0BD6B80D-737C-4D22-B40D-EB58A0EE64AD}.Debug|Any CPU.Build.0 = Debug|Any CPU
21+
{0BD6B80D-737C-4D22-B40D-EB58A0EE64AD}.Release|Any CPU.ActiveCfg = Release|Any CPU
22+
{0BD6B80D-737C-4D22-B40D-EB58A0EE64AD}.Release|Any CPU.Build.0 = Release|Any CPU
23+
{11B58045-2083-4FC1-A364-BC4DC3C1DF9C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
24+
{11B58045-2083-4FC1-A364-BC4DC3C1DF9C}.Debug|Any CPU.Build.0 = Debug|Any CPU
25+
{11B58045-2083-4FC1-A364-BC4DC3C1DF9C}.Release|Any CPU.ActiveCfg = Release|Any CPU
26+
{11B58045-2083-4FC1-A364-BC4DC3C1DF9C}.Release|Any CPU.Build.0 = Release|Any CPU
2727
EndGlobalSection
2828
EndGlobal

src/TrophyApi/TrophyApi.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<!-- 🔹 NuGet Metadata -->
1111
<PackageId>Trophy</PackageId>
12-
<Version>1.0.35</Version>
12+
<Version>1.0.36</Version>
1313
<Authors>Trophy Labs, Inc</Authors>
1414
<Description>.NET SDK for the Trophy API</Description>
1515
<PackageTags>trophy; api; gamification; sdk</PackageTags>

src/TrophyApi/Types/AchievementCompletionResponseAchievement.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ public record AchievementCompletionResponseAchievement
1414
public MetricEventStreakResponse? CurrentStreak { get; set; }
1515

1616
/// <summary>
17-
/// The date and time the achievement was completed, in ISO 8601 format.
17+
/// The date and time the achievement was completed, in ISO 8601 format. Null if the achievement has not been completed.
1818
/// </summary>
1919
[JsonPropertyName("achievedAt")]
20-
public required DateTime AchievedAt { get; set; }
20+
public DateTime? AchievedAt { get; set; }
2121

2222
/// <summary>
2323
/// The unique ID of the achievement.

src/TrophyApi/Types/CompletedAchievementResponse.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ namespace TrophyApi;
88
public record CompletedAchievementResponse
99
{
1010
/// <summary>
11-
/// The date and time the achievement was completed, in ISO 8601 format.
11+
/// The date and time the achievement was completed, in ISO 8601 format. Null if the achievement has not been completed.
1212
/// </summary>
1313
[JsonPropertyName("achievedAt")]
14-
public required DateTime AchievedAt { get; set; }
14+
public DateTime? AchievedAt { get; set; }
1515

1616
/// <summary>
1717
/// The unique ID of the achievement.

0 commit comments

Comments
 (0)