Open
Conversation
Upgraded `AwesomeAssertions`, `coverlet`, `Microsoft.NET.Test.Sdk`, and `xunit` to current latest versions. Added `Microsoft.Testing.Platform` v2.1.0 explicitly, because min v2.0.0 is needed by `GitHubActionsTestLogger`, but newly introduced `xunit.v3` uses v1.9.1 only which is not compatible with `GitHubActionsTestLogger`.
Exchanged `xunit.v3` package by `xunit.v3.mtp-v2` because to use Microsoft.Testing.Platform v2 with `xunit` as well, because `GitHubActionsTestLogger` is incompatible with MTP v1 `xunit.v3` relays on by default. In addition, `GitHubActionsTestLogger` should not be marked as private with MTP v2.
Microsoft.Testing.Platform was uninstalled to fix current build errors.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Upgraded
AwesomeAssertions,coverlet,Microsoft.NET.Test.Sdk, andxunitto current latest versions.xunitwas exchanged byxunit.v3.mtp-v2to enforce the usage ofMicrosoft.TEsting.Platform(MTP) v2, because as wellxunit.v3uses by default MTP v1.In addition,
Microsoft.Testing.Platformv2.1.0 was explicitly added, because it's recommended inGitHubActionsTestLoggerdocumentation. Furthermore,GitHubActionsTestLoggeris not marked as private anymore, like recommended within the before linked documentation and to the build errors that occurred with the new changes done.