上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 46 下一页
摘要: 提出问题 我想判断某个类或者属性是否声明了某特性,该怎么办? 解决问题 使用IsDefined,他比GetCustomAttributes效率更高 xxx.GetType().IsDefined(typeof(XXXAttribute),false) 参考 CLR via C# 379 阅读全文
posted @ 2022-09-02 09:21 东百牧码人 阅读(26) 评论(0) 推荐(0)
摘要: 提出问题 生成的nuget包名字不确定怎么办? 解决问题 使用*.nupkg匹配全部 dotnet nuget push -s http://localhost:18103/v3/index.json *.nupkg --skip-duplicate 参考 dotnet nuget push 阅读全文
posted @ 2022-09-01 15:49 东百牧码人 阅读(48) 评论(0) 推荐(0)
摘要: 提出问题 为了信息安全和不给自己惹上麻烦,给公司开发的nuget包最好发布到公司内部nuget服务上,如何在使用jenkins持续构建时指定nuget源呢? 解决问题 项目跟文件加增加nuget.config文件 <?xml version="1.0" encoding="utf-8"?> <con 阅读全文
posted @ 2022-09-01 14:40 东百牧码人 阅读(206) 评论(0) 推荐(0)
摘要: 创建Item Template项目 编辑Item Template模板 $safeitemrootname$ 类名 $rootnamespace$ 命名空间 创建VSIX项目 打包Item Template模板 安装VSIX 需关闭VS 修改版本安装可升级 示例安装单例新建项 搜索:Singleto 阅读全文
posted @ 2022-09-01 11:35 东百牧码人 阅读(32) 评论(0) 推荐(0)
摘要: 构造函数注入 IConfiguration private readonly IConfiguration _configuration; public XXXController( IConfiguration configuration) { _configuration= configurat 阅读全文
posted @ 2022-09-01 09:41 东百牧码人 阅读(28) 评论(0) 推荐(0)
摘要: //创建servername服务,弹出配置界面,选择influxd.exe nssm install influxd "程序路径.exe" //开启服务,成功后浏览器打开localhost:8086 nssm start influxd //停止服务 nssm stop influxd //移除服务 阅读全文
posted @ 2022-08-31 10:03 东百牧码人 阅读(32) 评论(0) 推荐(0)
摘要: 生成新的 SSH 公私钥对 以下PowerShell脚本检查是否存在已有的 SSH 公私钥对,如果不存在,则生成一对新的公私钥对 if ( (-not (Test-Path -Path $HOME/.ssh -PathType Container)) -or ` (-not (Test-Path - 阅读全文
posted @ 2022-08-30 17:26 东百牧码人 阅读(512) 评论(0) 推荐(0)
摘要: 使用jenkins构建报错:ERROR: Couldn't find any revision to build. Verify the repository and branch configuration for this job. 是jenkins找不到分支来拉指定的git代码,是因为gith 阅读全文
posted @ 2022-08-29 13:24 东百牧码人 阅读(126) 评论(0) 推荐(0)
摘要: 被OAS定义的格式 参考 规范 阅读全文
posted @ 2022-08-29 09:46 东百牧码人 阅读(70) 评论(0) 推荐(0)
摘要: InfluxDB查询超时 using var client = InfluxDBClientFactory.Create(InfluxDBClientOptions.Builder.CreateNew() .TimeOut(new TimeSpan(1,1,1,1)).Url("http://172 阅读全文
posted @ 2022-08-26 17:01 东百牧码人 阅读(1133) 评论(0) 推荐(0)
上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 46 下一页