摘要: 省流: 下载离线安装包 https://windbg.download.prss.microsoft.com/dbazure/prod/1-2606-22001-0/windbg.msixbundle powershell管理员模式,切换到离线安装包目录,执行 Add-AppxPackage -Pa 阅读全文
posted @ 2026-07-30 11:12 在风里 阅读(52) 评论(0) 推荐(0)
摘要: 最近在老项目中遇到这个bug,记录一下 Environment.CurrentDirectory 是可写的,而且和启动程序的方式有关,如果用cmd指令启动,没有指定目录的话会被设置成cmd的目录 AppDomain.CurrentDomain.BaseDirectory 是只读的 所以看环境选择使用 阅读全文
posted @ 2026-04-16 10:11 在风里 阅读(9) 评论(0) 推荐(0)
摘要: 减少dll文件的数量 dll文件是项目中使用到的NuGet包,首先需要去除没有使用的NuGet包。(目前暂无很好的解决方案) 然后在NuGet包管理器中为解决方案添加Costura.Fody,根据项目环境选择对应的Costura.Fody版本,再次编译即可将源dll合并到目标exe中。 减少xml和 阅读全文
posted @ 2024-01-25 19:04 在风里 阅读(117) 评论(0) 推荐(0)
摘要: 需要用到 autoconf-2.71 cmake-3.23.0 freeswitch-1.10.9 opus-1.3.1 yasm-1.3.0 spandsp和sofia-sip 可以提前下载好解压包 方便批量安装, 其中spandsp最新提交和freeswitch1.10.9不匹配, 需要切换到0d2e6ac65e0e8f53d652665a743015a88bf048d4提交 阅读全文
posted @ 2023-10-31 17:29 在风里 阅读(877) 评论(0) 推荐(0)
摘要: 就像这样: 阅读全文
posted @ 2020-02-21 11:29 在风里 阅读(185) 评论(0) 推荐(0)
摘要: 错误情况如标题,处理程序“WebServiceHandlerFactory-Integrated”在其模块列表中有一个错误模块“ManagedPipelineHandler” 转载请注明出处: http://www.cnblogs.com/zaiyuzhong/p/WebServiceHandler 阅读全文
posted @ 2017-12-25 21:42 在风里 阅读(2503) 评论(0) 推荐(0)
摘要: 论getTime和setTime的使用方法 水一篇 阅读全文
posted @ 2017-10-11 11:49 在风里 阅读(1424) 评论(0) 推荐(0)
摘要: 从#或$后开始,到*之前是GPS数据,*之后是校验位。 public bool Verified(string gps) { gps = gps.TrimStart('#', '$'); var s = gps.Split('*'); if(s.Length < 2) return false; v 阅读全文
posted @ 2017-04-01 11:31 在风里 阅读(1189) 评论(0) 推荐(0)
摘要: capture.SetCaptureProperty(CapProp.Fps, 帧率数); 阅读全文
posted @ 2017-04-01 11:16 在风里 阅读(1748) 评论(0) 推荐(0)
摘要: 压缩.exe 阅读全文
posted @ 2017-03-15 10:28 在风里 阅读(714) 评论(0) 推荐(0)