[tests] reproduce issue found with Debugger in VS#10443
Merged
jonathanpeppers merged 2 commits intodev/grendel/dso-preload-cache-fixfrom Aug 25, 2025
Merged
[tests] reproduce issue found with Debugger in VS#10443jonathanpeppers merged 2 commits intodev/grendel/dso-preload-cache-fixfrom
jonathanpeppers merged 2 commits intodev/grendel/dso-preload-cache-fixfrom
Conversation
…820.9 (#10440) This pull request updates the following dependencies ## From https://github.com/dotnet/dotnet - **Subscription**: [58e8279d-a615-4b62-adba-499b6c5c9d3e](https://maestro.dot.net/subscriptions?search=58e8279d-a615-4b62-adba-499b6c5c9d3e) - **Build**: [20250820.9](https://dev.azure.com/dnceng/internal/_build/results?buildId=2776321) - **Date Produced**: August 20, 2025 6:33:29 PM UTC - **Commit**: [619d5633513d1b31c528db4360833fce52f51829](dotnet/dotnet@619d563) - **Branch**: [release/10.0.1xx](https://github.com/dotnet/dotnet/tree/release/10.0.1xx) - **Updates**: - From [10.0.0-beta.25416.105 to 10.0.0-beta.25420.109][1] - Microsoft.DotNet.Build.Tasks.Feed - From [0.11.5-alpha.25416.105 to 0.11.5-alpha.25420.109][1] - Microsoft.DotNet.Cecil - From [10.0.0-rc.2.25416.105 to 10.0.0-rc.2.25420.109][1] - Microsoft.NET.ILLink.Tasks - Microsoft.NETCore.App.Ref - From [10.0.100-rc.2.25416.105 to 10.0.100-rc.2.25420.109][1] - Microsoft.NET.Sdk - Microsoft.TemplateEngine.Authoring.Tasks [1]: dotnet/dotnet@a01724d...619d563
Context: ee43633 Hitting F5 in Visual Studio for a `dotnet new maui` app produces a loop such as: 08-25 09:40:36.759 32259 32293 D monodroid-assembly: monodroid_dlopen: hash match found, DSO name is 'libSystem.Security.Cryptography.Native.Android.so' 08-25 09:40:36.759 32259 32293 D monodroid-assembly: Trying to load loading shared JNI library /data/user/0/com.companyname.testgrendel/files/.__override__/arm64-v8a/libSystem.Security.Cryptography.Native.Android.so with System.loadLibrary 08-25 09:40:36.759 32259 32293 D monodroid-assembly: Running DSO loader on thread 32293, dispatching to main thread This does not happen for: * `dotnet new android` project * At the command-line * Using Ctrl+F5 in Visual Studio I was able to also reproduce this issue in a `static MainActivity` constructor that uses `HttpClient`, adding a test doing the same thing.
51af2cc
into
dev/grendel/dso-preload-cache-fix
52 of 59 checks passed
grendello
pushed a commit
that referenced
this pull request
Aug 26, 2025
Context: ee43633 Hitting F5 in Visual Studio for a `dotnet new maui` app produces a loop such as: 08-25 09:40:36.759 32259 32293 D monodroid-assembly: monodroid_dlopen: hash match found, DSO name is 'libSystem.Security.Cryptography.Native.Android.so' 08-25 09:40:36.759 32259 32293 D monodroid-assembly: Trying to load loading shared JNI library /data/user/0/com.companyname.testgrendel/files/.__override__/arm64-v8a/libSystem.Security.Cryptography.Native.Android.so with System.loadLibrary 08-25 09:40:36.759 32259 32293 D monodroid-assembly: Running DSO loader on thread 32293, dispatching to main thread This does not happen for: * `dotnet new android` project * At the command-line * Using Ctrl+F5 in Visual Studio I was able to also reproduce this issue in a `static MainActivity` constructor that uses `HttpClient`, adding a test doing the same thing.
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 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.
Context: ee43633
Hitting F5 in Visual Studio for a
dotnet new mauiapp produces a loop such as:This does not happen for:
dotnet new androidprojectI was able to also reproduce this issue in a
static MainActivityconstructor that usesHttpClient, adding a test doing the same thing.