mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-08-26 22:48:20 +01:00
Bumps MSTest.TestAdapter from 3.10.1 to 3.10.2 Bumps MSTest.TestFramework from 3.10.1 to 3.10.2 --- updated-dependencies: - dependency-name: MSTest.TestAdapter dependency-version: 3.10.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: mstest - dependency-name: MSTest.TestFramework dependency-version: 3.10.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: mstest ... Signed-off-by: dependabot[bot] <support@github.com>
27 lines
1.4 KiB
XML
27 lines
1.4 KiB
XML
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<Import Project="Common.props" />
|
|
|
|
<ItemGroup>
|
|
<!-- Usage: Code coverage collection -->
|
|
<PackageReference Include="coverlet.collector" Version="6.0.4">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<!-- Usage: Logging specific for GitHub actions -->
|
|
<PackageReference Include="GitHubActionsTestLogger" Version="2.4.1">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<!-- Usage: Hard to say what exactly this is for, but not including it removes the test icon and breaks vstest.console.exe for some reason -->
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" Condition="'$(TgsTestNoSdk)' != 'true'" />
|
|
<!-- Usage: Dependency mocking for tests -->
|
|
<!-- Pinned: Be VERY careful about updating https://github.com/moq/moq/issues/1372 -->
|
|
<PackageReference Include="Moq" Version="4.20.72" />
|
|
<!-- Usage: MSTest execution -->
|
|
<PackageReference Include="MSTest.TestAdapter" Version="3.10.2" />
|
|
<!-- Usage: MSTest asserts etc... -->
|
|
<PackageReference Include="MSTest.TestFramework" Version="3.10.2" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|