-
Notifications
You must be signed in to change notification settings - Fork 291
Convert internal framework to MTP #5014
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
f52cba6
Convert internal framework to MTP
Evangelink c9e9753
Merge branch 'main' into full-mtp
Evangelink b10a471
Fix 1 test project
Evangelink ca974eb
Merge branch 'main' into full-mtp
Evangelink bea2275
Fix tests
Evangelink af851a8
Merge branch 'main' into full-mtp
Evangelink 77c9b51
Use var
Evangelink c093c33
Merge branch 'main' into full-mtp
Evangelink 5680675
Fix
Evangelink e25aec7
Refactor
Evangelink 94d863b
Merge branch 'main' into full-mtp
Evangelink 68fd05b
Fix using
Evangelink 05a8ba7
Fix stacktrace check under release
Evangelink f8f5670
Fix
Evangelink 1489842
test
Evangelink 10cc913
Merge branch 'main' into full-mtp
Evangelink 835c3bb
More fixes
Evangelink 4a9d38d
Try to use net6.0
Evangelink 97de971
Revert "Try to use net6.0"
Evangelink 32c83b4
Try to force set DOTNET_ROOT env var for vstest console wrapper
Evangelink a6739d8
Merge branch 'main' into full-mtp
Evangelink 3059b76
Use net6 instead of netcoreapp3.1
Evangelink 2c87978
Merge branch 'main' into full-mtp
Evangelink c90f46b
Revert "Use net6 instead of netcoreapp3.1"
Evangelink 8f17142
Mroe
Evangelink 5ead38f
Add netcoreapp3.1 x86
Evangelink 9c0fbbf
Disable tests
Evangelink aff47ee
Drop using
Evangelink 9766ea0
Again
Evangelink c4d75d2
Now?
Evangelink 434eca2
Disable more
Evangelink 3235ea8
Fix
Evangelink File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,3 @@ | ||
| <Project> | ||
| <Import Project="$(NuGetPackageRoot)\microsoft.dotnet.arcade.sdk\$(ArcadeSdkVersion)\tools\VSTest.targets" Condition=" '$(UseVSTestRunner)' == 'true' "/> | ||
| <Import Project=".\TestingPlatform.Runner.targets" Condition=" '$(UseVSTestRunner)' != 'true' " /> | ||
|
|
||
| <PropertyGroup> | ||
| <TestRunnerAdditionalArguments Condition=" '$(UseVSTestRunner)' == 'true' ">--blame-crash --blame-crash-dump-type full</TestRunnerAdditionalArguments> | ||
| </PropertyGroup> | ||
| <Import Project=".\TestingPlatform.Runner.targets" /> | ||
| </Project> |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,6 +10,8 @@ | |
| "9.0.2" | ||
| ], | ||
| "dotnet/x86": [ | ||
| "3.1.32", | ||
| "6.0.35", | ||
| "9.0.2" | ||
| ], | ||
| "aspnetcore": [ | ||
|
|
||
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -57,6 +57,8 @@ This package provides the core platform and the .NET implementation of the proto | |
| <InternalsVisibleTo Include="MSTest.Acceptance.IntegrationTests" Key="$(VsPublicKey)" /> | ||
| <InternalsVisibleTo Include="MSTest.Engine" Key="$(VsPublicKey)" /> | ||
| <InternalsVisibleTo Include="MSTest.Engine.UnitTests" Key="$(VsPublicKey)" /> | ||
| <InternalsVisibleTo Include="TestFramework.ForTestingMSTest" Key="$(VsPublicKey)" /> | ||
| <InternalsVisibleTo Include="MSTest.IntegrationTests" Key="$(VsPublicKey)" /> | ||
|
Comment on lines
+60
to
+61
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Needed for polyfill |
||
| </ItemGroup> | ||
|
|
||
| <ItemGroup> | ||
|
|
||
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
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
7 changes: 3 additions & 4 deletions
7
...grationTests/MSTest.Acceptance.IntegrationTests/MSTest.Acceptance.IntegrationTests.csproj
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
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
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| // Copyright (c) Microsoft Corporation. All rights reserved. | ||
| // Licensed under the MIT license. See LICENSE file in the project root for full license information. | ||
|
|
||
| using Microsoft.Testing.Extensions; | ||
|
|
||
| using TestFramework.ForTestingMSTest; | ||
|
|
||
| ITestApplicationBuilder builder = await TestApplication.CreateBuilderAsync(args); | ||
|
|
||
| #if ENABLE_CODECOVERAGE | ||
| builder.AddCodeCoverageProvider(); | ||
| #endif | ||
| builder.AddTrxReportProvider(); | ||
| builder.AddHangDumpProvider(); | ||
| builder.AddCrashDumpProvider(ignoreIfNotSupported: true); | ||
| builder.AddRetryProvider(); | ||
|
|
||
| builder.AddInternalTestFramework(); | ||
|
|
||
| ITestApplication app = await builder.BuildAsync(); | ||
| return await app.RunAsync(); |
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Enabled globally, cleaning up the various files.