mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-08-22 12:37:24 +01:00
Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.11.0 to 17.11.1. - [Release notes](https://github.com/microsoft/vstest/releases) - [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md) - [Commits](https://github.com/microsoft/vstest/compare/v17.11.0...v17.11.1) --- updated-dependencies: - dependency-name: Microsoft.NET.Test.Sdk dependency-type: direct:production update-type: version-update:semver-patch ... 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.2">
|
|
<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.11.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.71" />
|
|
<!-- Usage: MSTest execution -->
|
|
<PackageReference Include="MSTest.TestAdapter" Version="3.5.2" />
|
|
<!-- Usage: MSTest asserts etc... -->
|
|
<PackageReference Include="MSTest.TestFramework" Version="3.5.2" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|