Skip to content

Commit

Permalink
updated vers
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronSaikovski committed Aug 15, 2024
1 parent 5f39d67 commit 58709e4
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
6 changes: 3 additions & 3 deletions Crossword.API/Crossword.API.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
<PropertyGroup Condition=" '$(RunConfiguration)' == 'http' " />
<ItemGroup>
<PackageReference Include="InputHandlers.MonoGame" Version="1.7.0" />
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.7" />
<PackageReference Include="Serilog.AspNetCore" Version="8.0.1" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.6.2" />
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.8" />
<PackageReference Include="Serilog.AspNetCore" Version="8.0.2" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.7.0" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Crossword.Shared/Crossword.Shared.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0" />
<PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.1.303" />
<PackageReference Include="Serilog" Version="4.0.0" />
<PackageReference Include="Serilog" Version="4.0.1" />
<PackageReference Include="Serilog.Settings.Configuration" Version="8.0.2" />
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" />
<PackageReference Include="Serilog.Sinks.File" Version="6.0.0" />
Expand Down
6 changes: 3 additions & 3 deletions Crossword/CrosswordApp.cs
Original file line number Diff line number Diff line change
Expand Up @@ -171,11 +171,11 @@ public sealed partial class CrosswordApp : Game

//Offset constants
//private readonly int _nCrossBorderWidth = 3;
private int _nCrossOffsetX = 5;
private int _nCrossOffsetX = 5; //Logging implementation
private readonly SerilogLogger _logger;
private int _nCrossOffsetY = 5;

//Logging implementation
private readonly SerilogLogger _logger;



#endregion
Expand Down
1 change: 1 addition & 0 deletions Crossword/UI/DrawCrossword.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ public sealed partial class CrosswordApp
/// <param name="j"></param>
internal void InitPuzzleSquares(int i, int j)
{

_puzzleSquares![i, j] = new Rectangle(
_sqPuzzleSquares![i, j]!.XCoord + i * (int)UiConstants.SquareSpacer,
_sqPuzzleSquares![i, j]!.YCoord + j * (int)UiConstants.SquareSpacer,
Expand Down

0 comments on commit 58709e4

Please sign in to comment.