Skip to content

Commit bdc9744

Browse files
Merge pull request #113 from CodebreakerApp/112-analyzer-package-change-gameid-to-id
change gameid to id, change version number to 3.6 #112
2 parents 7583460 + e2b8b24 commit bdc9744

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
</PropertyGroup>
1616

1717
<PropertyGroup>
18-
<VersionPrefix>3.5.0</VersionPrefix>
18+
<VersionPrefix>3.6.0</VersionPrefix>
1919
</PropertyGroup>
2020
</Project>

src/services/gameapi/Codebreaker.GameAPIs.Analyzers.Tests/MockColorGame.cs

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

33
public class MockColorGame : IGame
44
{
5-
public Guid GameId { get; init; }
5+
public Guid Id { get; init; }
66
public int NumberCodes { get; init; }
77
public int MaxMoves { get; init; }
88
public DateTime? EndTime { get; set; }

src/services/gameapi/Codebreaker.GameAPIs.Analyzers.Tests/MockShapeGame.cs

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

33
public class MockShapeGame : IGame
44
{
5-
public Guid GameId { get; init; }
5+
public Guid Id { get; init; }
66
public int NumberCodes { get; init; }
77
public int MaxMoves { get; init; }
88
public DateTime? EndTime { get; set; }

src/services/gameapi/Codebreaker.GameAPIs.Analyzers/Contracts/IGame.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ public interface IGame
88
/// <summary>
99
/// The unique identifier for the game
1010
/// </summary>
11-
Guid GameId { get; }
11+
Guid Id { get; }
1212

1313
/// <summary>
1414
/// The type of game - a string to allow for future expansion

0 commit comments

Comments
 (0)