我正在尝试使用 Visual Studio 2017 Preview 3 的 Xamarin Live Player,按照以下链接进行设置:https ://developer.xamarin.com/guides/cross-platform/live/install/ 。它似乎适用于简单的应用程序。然而:
- 我无法
DependencyService
工作,它只是无法解决依赖关系,通过[assembly: Dependency(typeof(implementorType))]
在实现类上添加属性来注册。 - 此外,在iOS应用程序中,当我在事件中放置断点时
AppDelegate -> FinishedLaunching
,断点似乎无法到达,这可能是导致DependencyService
断点的原因吗?