mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-07-23 14:03:07 +01:00
25c73c6cb3
Bumps the mstest group with 2 updates: [MSTest.TestAdapter](https://github.com/microsoft/testfx) and [MSTest.TestFramework](https://github.com/microsoft/testfx). Updates `MSTest.TestAdapter` from 3.8.0 to 3.8.2 - [Release notes](https://github.com/microsoft/testfx/releases) - [Changelog](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md) - [Commits](https://github.com/microsoft/testfx/compare/v3.8.0...v3.8.2) Updates `MSTest.TestFramework` from 3.8.0 to 3.8.2 - [Release notes](https://github.com/microsoft/testfx/releases) - [Changelog](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md) - [Commits](https://github.com/microsoft/testfx/compare/v3.8.0...v3.8.2) --- updated-dependencies: - dependency-name: MSTest.TestAdapter dependency-type: direct:production update-type: version-update:semver-patch dependency-group: mstest - dependency-name: MSTest.TestFramework 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.13.0" 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.8.2" />
|
|
<!-- Usage: MSTest asserts etc... -->
|
|
<PackageReference Include="MSTest.TestFramework" Version="3.8.2" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|