Xamarin.iOS调试提示需要iOS SDK 错误信息:The version of Xamarin.iOS requires th iOS 9.3 SDK (shipped with Xcode 7.3) when the manged linker i s disabled. Either upgrade Xcode, or enable the managed linker.这是由于Xamarin.iOS项目都是通过苹果系统的Xcode工具进行编译.而每个版本的Xcode所自带的S…
最近一直在用服务,发现服务也没有那么难调试. Windows服务调试状态下用Console启动:步骤分两步 第一步改Program,启动代码 static class Program { /// <summary> /// 应用程序的主入口点. /// </summary> static void Main(string[] args) { if (Environment.UserInteractive) { //交互模式下执行 var test = new MyChatServi…