Xamarin.iOS - Application name "App.exe" conflicts with another user assembly

Has anyone ever seen this problem before. It sounds like MTouch, but I really don't know where to go from there?

+6
source share
2 answers

In short: Rename App.exe to something else, for example MyApp.exe

Why? You probably have an assembly called App.dll . The full assembly name does not contain a file type (.dll or .exe), so the presence of App.exe causes a conflict - since both of them will be called App .

+2
source

There is a discussion that can help you solve this problem: https://forums.xamarin.com/discussion/92773/the-root-assembly-conflicts-with-another-assembly ?

I had the same problem and updating Xamarin Forms on Windows (from VS 2015 Tools / Options / Xamarin / Others), Mac (from Xamarin Studio) and updating the XamarinForms NuGet package in a fail-safe solution solved my problem.

0
source

Source: https://habr.com/ru/post/1014284/


All Articles