Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xamarin.iOS - Application Name 'App.exe' conflicts with another user assembly

Has anyone ever seen this issue before. Looks to be MTouch related but I really don't know where to go from there?

like image 549
Phill Wiggins Avatar asked Jan 21 '17 14:01

Phill Wiggins


1 Answers

Short: Rename App.exe to something else, like MyApp.exe

Why? You likely have an assembly named App.dll. A fully qualified assembly name does not contain the file type (.dll or .exe) so having App.exe cause a conflict - since both would be referred as App.

like image 130
poupou Avatar answered Jan 04 '23 08:01

poupou