Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion PaperMania/Server.Tests/Server.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="coverlet.collector" Version="6.0.2" />
<PackageReference Include="coverlet.collector" Version="8.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="FluentAssertions" Version="8.8.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="Moq" Version="4.20.72" />
Expand Down
7 changes: 3 additions & 4 deletions PaperMania/Server/Domain/Entity/CurrencyData.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace Server.Domain.Entity;

using Server.Api.Dto.Response;
using Server.Application.Exceptions;
using Api.Dto.Response;
using Application.Exceptions;

public class CurrencyData
{
Expand Down Expand Up @@ -163,5 +163,4 @@ public void GainPaperPiece(int amount)

PaperPiece += amount;
}
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,4 @@ await _cacheService.SetAsync(
_locks.TryRemove(key, out _);
}
}
}
}
Loading