我在 MonoTouch 中收到以下警告。我该如何解决?我希望两者都被命名为 App1,但我找不到正确的位置。
谢谢!
warning MT0030: The executable name (App1.exe) and the app name (App2.app) are different, this may prevent crash logs from getting symbolicated properly.
我在 MonoTouch 中收到以下警告。我该如何解决?我希望两者都被命名为 App1,但我找不到正确的位置。
谢谢!
warning MT0030: The executable name (App1.exe) and the app name (App2.app) are different, this may prevent crash logs from getting symbolicated properly.
应用名称 (App2.app) 取自项目名称。您可以右键单击项目并“重命名”来更改它。
可执行文件名称(App1.exe)可以在项目的选项中更改(右键单击 -> 选项 -> 构建/输出 -> 程序集名称)。
在 Xamarin Studio 中打开项目选项并导航到“构建”部分。验证输出选项卡中的程序集名称是否与iOS 应用程序选项卡中的应用程序名称匹配。
很抱歉碰到这个老问题,但我在 Info.plist 中发现了以下两个条目:
<key>CFBundleDisplayName</key>
<string>AppName</string>
<key>CFBundleExecutable</key>
<string>AppNameX</string>
CFBundleExecutable是我必须修复我的应用程序名称的地方。我不确定,但似乎 VS/XS 设置无论如何都不会更改文件中的此条目。
希望这可以帮助 ;)