The Moq specific build error I got on windows is also gone.
Build FAILED.
C:\repos\EvoSC-sharp\tests\Modules\TeamChatModule.Tests\Middlewares\TeamChatMiddlewareTests.cs(9,7): error CS0246: The type or namespace name 'Moq' could not be found (are you missing a using directive or an
assembly reference?) [C:\repos\EvoSC-sharp\tests\Modules\TeamChatModule.Tests\TeamChatModule.Tests.csproj]
I have not increased the versions in EvoSC.csproj or the README.md, as it did not make sense to me to do, nor did I find any version numbers to bump that made sense to bump.
Adding Moq to the TeamChatModule resolves the issue I had on windows where I could not manage to get dotnet to resolve the and install the dependency.
Previously, if I ran
dotnet list package
inside oftests\Modules\TeamChatModule.Tests
, Moq would be missing. With this change, it is now present:The Moq specific build error I got on windows is also gone.
I have not increased the versions in
EvoSC.csproj
or theREADME.md
, as it did not make sense to me to do, nor did I find any version numbers to bump that made sense to bump.