-
Notifications
You must be signed in to change notification settings - Fork 564
[xabt] fix MONO_GC_PARAMS=bridge-implementation=new env var
#10275
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
Conversation
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
MONO_GC_PARAMS=major=marksweep env varMONO_GC_PARAMS=bridge-implementation=new env var
Member
Author
Fixes: #9701 A `=` symbol in the value of an environment variable does not appear to work in Debug mode with Fast Deployment enabled. This seems to be caused by the code in the `<FastDeploy/>` MSBuild task: var items = line.Split(new char[] { '=' }); if (items.Length != 2) continue; Introduce a test to verify a value such as: `MONO_GC_PARAMS=bridge-implementation=new`.
923c0e8 to
49c9ff1
Compare
jonathanpeppers
added a commit
that referenced
this pull request
Jul 14, 2025
…w` env var (#10275) Fixes: #9701 A `=` symbol in the value of an environment variable does not appear to work in Debug mode with Fast Deployment enabled. This seems to be caused by the code in the `<FastDeploy/>` MSBuild task: var items = line.Split(new char[] { '=' }); if (items.Length != 2) continue; Introduce a test to verify a value such as: `MONO_GC_PARAMS=bridge-implementation=new`. Bump to DevDiv/android-platform-support/release/9.0.1xx@709210ed Changes: https://devdiv.visualstudio.com/DevDiv/_git/android-platform-support/branchCompare?baseVersion=GC0ec8d44d5d90dd2b8ab69cc9791e22da4ff16a52&targetVersion=GC709210edd65a679cd5a7b36c8e3a3140fba1c512 * [xabdt] fix env vars containing `=` sign * [Xamarin.Installer.AndroidSDK] sort components before installing
jonathanpeppers
added a commit
that referenced
this pull request
Jul 14, 2025
…w` env var (#10275) Fixes: #9701 A `=` symbol in the value of an environment variable does not appear to work in Debug mode with Fast Deployment enabled. This seems to be caused by the code in the `<FastDeploy/>` MSBuild task: var items = line.Split(new char[] { '=' }); if (items.Length != 2) continue; Introduce a test to verify a value such as: `MONO_GC_PARAMS=bridge-implementation=new`. Bump to DevDiv/android-platform-support/release/9.0.1xx@709210ed Changes: https://devdiv.visualstudio.com/DevDiv/_git/android-platform-support/branchCompare?baseVersion=GC0ec8d44d5d90dd2b8ab69cc9791e22da4ff16a52&targetVersion=GC709210edd65a679cd5a7b36c8e3a3140fba1c512 * [xabdt] fix env vars containing `=` sign * [Xamarin.Installer.AndroidSDK] sort components before installing
jonathanpeppers
added a commit
that referenced
this pull request
Jul 14, 2025
…w` env var (#10275) Fixes: #9701 A `=` symbol in the value of an environment variable does not appear to work in Debug mode with Fast Deployment enabled. This seems to be caused by the code in the `<FastDeploy/>` MSBuild task: var items = line.Split(new char[] { '=' }); if (items.Length != 2) continue; Introduce a test to verify a value such as: `MONO_GC_PARAMS=bridge-implementation=new`. Bump to DevDiv/android-platform-support/release/9.0.1xx@709210ed Changes: https://devdiv.visualstudio.com/DevDiv/_git/android-platform-support/branchCompare?baseVersion=GC0ec8d44d5d90dd2b8ab69cc9791e22da4ff16a52&targetVersion=GC709210edd65a679cd5a7b36c8e3a3140fba1c512 * [xabdt] fix env vars containing `=` sign * [Xamarin.Installer.AndroidSDK] sort components before installing
jonathanpeppers
added a commit
that referenced
this pull request
Jul 15, 2025
…w` env var (#10275) (#10293) Fixes: #9701 A `=` symbol in the value of an environment variable does not appear to work in Debug mode with Fast Deployment enabled. This seems to be caused by the code in the `<FastDeploy/>` MSBuild task: var items = line.Split(new char[] { '=' }); if (items.Length != 2) continue; Introduce a test to verify a value such as: `MONO_GC_PARAMS=bridge-implementation=new`. Bump to DevDiv/android-platform-support/release/9.0.1xx@709210ed Changes: https://devdiv.visualstudio.com/DevDiv/_git/android-platform-support/branchCompare?baseVersion=GC0ec8d44d5d90dd2b8ab69cc9791e22da4ff16a52&targetVersion=GC709210edd65a679cd5a7b36c8e3a3140fba1c512 * [xabdt] fix env vars containing `=` sign * [Xamarin.Installer.AndroidSDK] sort components before installing
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.

Fixes: #9701
A
=symbol in the value of an environment variable does not appear to work in Debug mode with Fast Deployment enabled. This seems to be caused by the code in the<FastDeploy/>MSBuild task:Introduce a test to verify a value such as:
MONO_GC_PARAMS=bridge-implementation=new.