Xamarin Android:共享 MonoRuntime 错误
Xamarin Android: Shared MonoRuntime error
我正在使用 Xamarin 开发 android 应用程序。我通过模拟器和手动测试云成功进行了测试,但是当我尝试通过 VSTS 运行 它时,我得到:
Mono Shared Runtime is not supported. This can be resolved by changing
the project configuration or using a Release build.
我检查了我的 android 项目文件,共享单声道 运行时间已关闭。
谁能告诉我是什么原因导致了这个问题以及如何解决它?
我明白了。
我的 android 解决方案中的 AOT 标记设置为 true。我不得不禁用它并在 VSTS 上 运行 它。
右键单击您的 Android 项目 -> 属性
禁用选项 "Use Shared Runtime"
从 Android 选项中删除共享运行时和快速部署后,我不得不重新启动 Visual Studio 并再次打开发布配置以使设置生效。
我正在使用 Xamarin 开发 android 应用程序。我通过模拟器和手动测试云成功进行了测试,但是当我尝试通过 VSTS 运行 它时,我得到:
Mono Shared Runtime is not supported. This can be resolved by changing the project configuration or using a Release build.
我检查了我的 android 项目文件,共享单声道 运行时间已关闭。
谁能告诉我是什么原因导致了这个问题以及如何解决它?
我明白了。
我的 android 解决方案中的 AOT 标记设置为 true。我不得不禁用它并在 VSTS 上 运行 它。
右键单击您的 Android 项目 -> 属性
禁用选项 "Use Shared Runtime"
从 Android 选项中删除共享运行时和快速部署后,我不得不重新启动 Visual Studio 并再次打开发布配置以使设置生效。