-
Notifications
You must be signed in to change notification settings - Fork 533
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
System.Runtime.CompilerServices.Unsafe linked away in release leading to crashes #1196
Comments
It should be possible to preserve an entire assembly, either via the |
Either does not work. I think the problem might have to do with System.Runtime.CompilerServices.Unsafe being considered a "reference-only" assembly. |
Not sure what "reference-only" assembly mean here. Could you please attach a project which reproduces the issue? Are you sure the |
@radekdoulik: "Reference only assembly" means Issue #1154. It is an assembly with the Mono will not load reference assemblies. |
In case it doesn't work, try a Xamarin.Forms application in which the .NET Standard has the reference to Stores. |
Wasn't able to reproduce it with XA 8.1.1.1. I will try 8.1.5 next. BTW, I don't see |
@radekdoulik try "AndroidLinkSkip" yourself, I have little intention of reapplying once more all the workarounds which failed to work. Also, see the issue I have linked at the beginning. |
Works OK for me in XA 8.1.5 as well. |
Try Xamarin.Forms. |
OK, I have got a link to a simple app from @JonDouglas which reproduces the issue - https://github.com/aspnet/EntityFrameworkCore/files/1372571/Desktop.zip (App2). Looks like it is indeed related to #1154 |
A simple reproduction is the following:
Here are some relevant logs similar to those in #1154
|
@radekdoulik until the fix is released, is there a reliable workaround? |
I have just hit this after converting my csproj from using packages.config to using packagereference. Prior to that my app was working but I had to use linker mode "SdkOnly". Now after converting to package reference, system.runtime.compilerservices.unsafe gets linked away. |
@ddobrev I don't know about any workaround at this point. At least not from linker perspective as the assembly is not removed by the linker. It is present in the apk, but it is not loaded because it has As can be seen from logcat output:
In case you are using |
@radekdoulik I see. Could you please at least verify in your reproduction that using package.config instead does work? |
@ddobrev OK, tried it with the App2 repro case and it works. It looks like it might work for you too. |
@radekdoulik thank you. If you could just upload the project here as a future reference, I think it would be of immense help to everyone. |
This is an updated app from #1196 (comment). It uses The updated app runs OK, so using |
Any new workaround... after migrate from legay Xamarin.forms to .NET standard 2.0 same issue when start debug it stop... |
@JORGEGO 15.5.4 had no fixes for Xamarin.Android. We do not have a direct fix for this issue yet as the only known workaround is to use |
Let me ask it is possible use package.config for .NET standard 2.0 projects? |
@JORGEGO yes but it requires a little manual work. You need to remove all package references, ensure there are no "RestoreProjectStyle" properties in your csproj and readd your packages. |
@radekdoulik this one finally works. Thank you very much. |
I've resolved it by following:
|
@smitter86 I don't know, just 1. works for me. |
Having the same problem as well. Any news of a fix? |
It should be fixed soon by #1356 |
Already fixed now? |
I have the same problem with VS 2017 15.6.4. @smitter86, how to "re-add nuget packages in Mobile.Android project with using packages.config" ? I did not found enough clear instructions to do this. I'd like to make this only for the Android project. |
Solution? |
Yes. First you have to delete all the packages in your project. Then re-add the first pacakge. A prompt should appear: choose the package.config method. Re-add the other packages. It should work. |
This is a netstandard 2 project (xamarin.forms). I have tried a number of ways to get it to revert to packages.config approach. Including this approach as shown on SO https://stackoverflow.com/questions/45962998/switch-back-to-packages-config So, at this moment wanting to use ef.core sqllite with xamarin forms .netstandard2 project and struggling to get it back to packages.config approach. |
@EhRom that is a workaround, not a solution |
Gosh, I have tried a number of the variations above, modifying nupkg, removing lib's, refs, dlls, reinstalled etc. Still no solution to this error 04-07 15:46:50.825 D/Mono (29229): Assembly Loader probing location: 'System.Runtime.CompilerServices.Unsafe'. |
I follow these steps of hongliyu2002 https://forums.realm.io/t/could-not-load-assembly-system-runtime-compilerservices-unsafe-during-startup-registration/974/4 1. Go to C:\Users%user%.nuget\system.runtime.compilerservices.unsafe\4.4.0, and delete "ref" folder then make a copy of "lib" folder and rename the copy back to "ref". This simple workaround , works for me :) |
@denmarksdev |
Can please give anybody a hint if that does help although with the problem that the Command does not fire? We have no crash or exception anywhere... |
I suspect that this issue is in part duplicative of #1154 and #1162 (plus many followup commits), which revolve around handling of reference assemblies. It would be interesting to re-try this against e.g. Visual Studio 15.7 Preview 4. |
I'm getting the problem on release version of VS and .net Core. Trying different workarounds. Anyone know if it's still a problem in 15.7 Preview 4? (Maybe that will ship this week at Build?) |
it is also appear after Realm installation |
@jonpryor I have just tested this with VS 15.7.0, seems to be fixed! 😊 |
I can confirm that latest vs 15.7 with XF 3.0.0.446417 fixed this issue. |
We are running Xamarin Forms 3.0 and 3.1 and Visual Studio 2017 15.7.1 and when we try to run the apk we create in VS or App Center we still get "Could not load assembly 'System.IO.Packaging' during startup registration." |
I am getting this error with a fresh copy of https://github.com/cwrea/XamarinTodo |
@alexdrl Odd -- I am not encountering the issue. I am able to compile and run the Android app in the latest version of the sample (https://github.com/cwrea/XamarinTodo/tree/NETStd20_EFCore203 and corresponding to When I created that version, I did specifically remove the Did you upgrade any packages or make any other changes, or ran the build from unmodified source? |
@cwrea The only thing that I do is to extract the zip downloaded from GitHub, and build+run the Project in VS. I confirm that the versions of VS and Xamarin.Android SDK are the same that you mention Doing this solves the problem #1196 (comment) |
@alexdrl In that case, I suggest you open a new issue. Attach a copy of the zip file to your issue, your machine config, your build logs, etc. as described in the new issue template. |
This is most probably related to dotnet/efcore#8922 . None of the workarounds there help. The major problem is that it's simply impossible to force the linker to preserve an entire assembly.
Steps to Reproduce
Expected Behavior
The application runs.
Actual Behavior
The application does not load at all with:
Could not load assembly 'System.Runtime.CompilerServices.Unsafe' during startup registration.
Version Information
Microsoft Visual Studio Community 2017
Version 15.5.3
VisualStudio.15.Release/15.5.3+27130.2020
Microsoft .NET Framework
Version 4.7.02558
Installed Version: Community
Visual Basic 2017 00369-60000-00001-AA416
Microsoft Visual Basic 2017
Visual C# 2017 00369-60000-00001-AA416
Microsoft Visual C# 2017
Visual C++ 2017 00369-60000-00001-AA416
Microsoft Visual C++ 2017
Visual F# 4.1 00369-60000-00001-AA416
Microsoft Visual F# 4.1
Application Insights Tools for Visual Studio Package 8.10.01106.1
Application Insights Tools for Visual Studio
ASP.NET and Web Tools 2017 15.0.31127.0
ASP.NET and Web Tools 2017
ASP.NET Core Razor Language Services 1.0
Provides languages services for ASP.NET Core Razor.
ASP.NET Web Frameworks and Tools 2017 5.2.51007.0
For additional information, visit https://www.asp.net/
Azure App Service Tools v3.0.0 15.0.31106.0
Azure App Service Tools v3.0.0
Common Azure Tools 1.10
Provides common services for use by Azure Mobile Services and Microsoft Azure Tools.
EZ-GIT 1.7.2
GradleBindings.VisualStudio 1.0
Creates Xamarin Android Binding projects from a gradle file.
JavaScript Language Service 2.0
JavaScript Language Service
Merq 1.1.17-rc (cba4571)
Command Bus, Event Stream and Async Manager for Visual Studio extensions.
Microsoft Azure Tools 2.9
Microsoft Azure Tools for Microsoft Visual Studio 2017 - v2.9.51120.3
Microsoft Continuous Delivery Tools for Visual Studio 0.3
Simplifying the configuration of continuous build integration and continuous build delivery from within the Visual Studio IDE.
Microsoft JVM Debugger 1.0
Provides support for connecting the Visual Studio debugger to JDWP compatible Java Virtual Machines
Microsoft MI-Based Debugger 1.0
Provides support for connecting Visual Studio to MI compatible debuggers
Microsoft Visual C++ Wizards 1.0
Microsoft Visual C++ Wizards
Microsoft Visual Studio Tools for Containers 1.1
Develop, run, validate your ASP.NET Core applications in the target environment. F5 your application directly into a container with debugging, or CTRL + F5 to edit & refresh your app without having to rebuild the container.
Microsoft Visual Studio VC Package 1.0
Microsoft Visual Studio VC Package
Mono Debugging for Visual Studio 4.8.4-pre (3fe64e3)
Support for debugging Mono processes with Visual Studio.
NpgsqlVSPackage Extension 1.0
NpgsqlVSPackage Visual Studio Extension Detailed Info
NuGet Package Manager 4.5.0
NuGet Package Manager in Visual Studio. For more information about NuGet, visit http://docs.nuget.org/.
Qt Visual Studio Tools 2.1.2
The Qt Visual Studio Tools allow developers to use the standard development environment without having to worry about any Qt-related build steps or tools.
SQL Server Data Tools 15.1.61710.120
Microsoft SQL Server Data Tools
Visual Studio Code Debug Adapter Host Package 1.0
Interop layer for hosting Visual Studio Code debug adapters in Visual Studio
Visual Studio Tools for CMake 1.0
Visual Studio Tools for CMake
VisualStudio.Mac 1.0
Mac Extension for Visual Studio
Xamarin 4.8.0.757 (7f9ec2a)
Visual Studio extension to enable development for Xamarin.iOS and Xamarin.Android.
Xamarin Designer 4.8.188 (c5813fa34)
Visual Studio extension to enable Xamarin Designer tools in Visual Studio.
Xamarin.Android SDK 8.1.3.0 (HEAD/ef47226b7)
Xamarin.Android Reference Assemblies and MSBuild support.
Xamarin.iOS and Xamarin.Mac SDK 11.6.1.2 (6857dfc)
Xamarin.iOS and Xamarin.Mac Reference Assemblies and MSBuild support.
The text was updated successfully, but these errors were encountered: