Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Executable name (AppName1.exe) and the app name (AppName2.app) are different

Tags:

xamarin.ios

I get the following warning in MonoTouch. How can I solve it? I want both to be named App1 but I can not find the right spot.

Thanks!

warning MT0030: The executable name (App1.exe) and the app name (App2.app) are different, this may prevent crash logs from getting symbolicated properly.
like image 937
Henning Schulz Avatar asked Nov 01 '13 11:11

Henning Schulz


2 Answers

The app name (App2.app) is taken from the name of the project. You can right-click the project and 'Rename' to change it.

The executable name (App1.exe) can be changed in the project's options (right-click -> Options -> Build/Output -> Assembly Name).

like image 125
Rolf Bjarne Kvinge Avatar answered Nov 17 '22 23:11

Rolf Bjarne Kvinge


Open the project options in Xamarin Studio and navigate to the "Build" section. Verify that Assembly Name in the Output Tab matches Application Name in the iOS Application Tab.

like image 3
Oliver Weichhold Avatar answered Nov 17 '22 23:11

Oliver Weichhold