Xamarin iOS Your application uses the compiler option, which requires xamarin.ios Business edition

Since downloading the latest version of Xamarin Studio 5.9, I cannot compile the ioS application. I get an error -

Your application uses the compiler option, which requires xamarin.ios Business edition or higher. Your application uses the --profiling compiler option.

I did not select the profiler option, but I cannot find a way to disable it.

+7
c # ios xamarin
source share
3 answers

After some investigation, I found out that updating to the latest version of Xamarin Studio caused a change in the settings in the .csproj file. Having opened the file and searched in xml, I found two nodes called MtouchProfiling with a value set to true. I changed the values ​​to false and built again, voila, working!

+11
source share

To disable profiling, go to the "Project Settings / iOS Build" and "Debugging Options" uncheck "Enable profiling".

+1
source share

I had the same problem. Profiling was off, but Hamarin thought. I had to disable Debugging, rebuild the solution after clearing all, re-enable debugging (with Profiling disabled)

+1
source share

All Articles