Document AndroidInstrumentation and EnableMSTestRunner build properties#11129
Merged
jonathanpeppers merged 3 commits intomainfrom Apr 16, 2026
Merged
Conversation
…rties.md Agent-Logs-Url: https://github.com/dotnet/android/sessions/b0ccb4d8-0f7e-438a-beef-961ada29fc27 Co-authored-by: jonathanpeppers <840039+jonathanpeppers@users.noreply.github.com>
Copilot created this pull request from a session on behalf of
jonathanpeppers
April 16, 2026 17:08
View session
Contributor
There was a problem hiding this comment.
Pull request overview
Adds missing documentation for two recently introduced MSBuild properties affecting dotnet run behavior for Android test/instrumentation scenarios.
Changes:
- Document
AndroidInstrumentation(including interaction withEnableMSTestRunner) inbuild-properties.md. - Document
EnableMSTestRunnerand its effect on switching fromam starttoam instrument. - Place both entries in alphabetical order and mark them as introduced in .NET 11.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Clarify the source of the instrumentation runner class name in the documentation.
jonathanpeppers
approved these changes
Apr 16, 2026
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.
Context: 885dd60 added
AndroidInstrumentationandEnableMSTestRunnerMSBuild properties but did not document them inbuild-properties.md.This PR adds documentation entries for both properties in alphabetical order:
AndroidInstrumentation– specifies the Android instrumentation class name used when launching viadotnet run. WhenEnableMSTestRunneristrueand this is unset, it is auto-resolved fromAndroidManifest.xml.EnableMSTestRunner– enables the MSTest runner for Android test projects, switchingdotnet runfromam starttoam instrument.Both are marked as introduced in .NET 11.