会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
HAPP7
管理
2021年10月26日
Linux使用Nuget.Server搭建Nuget私有仓库
摘要: 1、API.Keys 使用Nuget.Server时,需要用到API.Keys,在 nuget.org 上创建密钥。详细内容可以参考的链接Nuget 通过 dotnet 命令行发布。(文章中的dotnet nuget 应该只适用于.net core(没有验证,暂这么记录)) 2、docker + j
阅读全文
posted @ 2021-10-26 11:44 HAPP7
阅读(719)
评论(0)
推荐(0)
编辑
2021年10月25日
Linux使用Nuget.Server搭建Nuget私有仓库
摘要: 1、API.Keys 使用Nuget.Server时,需要用到API.Keys,在 nuget.org 上创建密钥。详细内容可以参考下边的链接。文章中的dotnet nuget 应该只适用于.net core(没有验证,暂这么记录。) https://blog.csdn.net/lindexi_gd
阅读全文
posted @ 2021-10-25 16:22 HAPP7
阅读(296)
评论(0)
推荐(0)
编辑
2021年10月22日
linux搭建nuget私有仓库(Nuget.Server和Nexus)
摘要: https://www.cnblogs.com/Nine4Cool/p/13841800.html 这个是一些综合链接 nuget.org 获取API.Keys https://blog.csdn.net/lindexi_gd/article/details/83176151 使用Nuget.Ser
阅读全文
posted @ 2021-10-22 16:21 HAPP7
阅读(404)
评论(0)
推荐(0)
编辑
2021年6月24日
性能工具
摘要: Apache JMeter
阅读全文
posted @ 2021-06-24 17:30 HAPP7
阅读(11)
评论(0)
推荐(0)
编辑
2021年6月22日
dotnet Dictionary 和 Hashtable
摘要: 区别: 1、Dictionary支持泛型,Hashtable不支持泛型,Hashtable的key和value都是object。 Dictionary 不需要进行类型转换,Hashtable在存储或检索值类型时通常会发生装箱和拆箱的操作,非常耗时。 2、Dictionary非线程安全,多线程必须人为
阅读全文
posted @ 2021-06-22 13:37 HAPP7
阅读(79)
评论(0)
推荐(0)
编辑
2021年6月20日
jenkins+私服registry+ssh远程+docker 实现自动化部署
摘要: 1、ssh远程连接 , 简述:在120生成公钥和私钥,把120 公钥 加入121 的 authorized_keys。 前提:有2台linux主机,ip分别为120和121。我在120上部署了jenkins,和私服服务(学习测试,不要在意合理性),现在需要在jenkins上调用121上的docker
阅读全文
posted @ 2021-06-20 17:13 HAPP7
阅读(511)
评论(0)
推荐(0)
编辑
2021年6月16日
docker + .net5+sqlserver异常:System.Data.SqlClient.SqlException (0x80131904)。。。。(provider: SSL Provider, error: 31 - Encryption(ssl/tls) handshake failed)
摘要: 1、进入容器(容器是debian系统), docker exec -it 容器名(或容器id)bash 2、进入ssl 目录 cd /etc/ssl ,查看目录下文件,可以看到openssl.cnf 3、 使用vim打开openssl.cnf(没有vim,使用apt-get update -y ,a
阅读全文
posted @ 2021-06-16 11:33 HAPP7
阅读(2331)
评论(1)
推荐(0)
编辑
2021年6月15日
docker+jenkins+aspnetcore+nginx
摘要: 1、安装docker. 2、$ docker pull jenkins/jenkins 获取jenkins镜像 3、不需要安装插件,设置docker映射,在容器里执行docker命令。 修改jenkins目录和docker目录权限,这里1000是容器中Jenkins 的用户 uid chown -R
阅读全文
posted @ 2021-06-15 17:45 HAPP7
阅读(59)
评论(0)
推荐(0)
编辑
2021年6月11日
Linux+Docker+Dockerfile + netcore + python
摘要: 1、Dockerfile放在sln同一层级。 2、Dockerfile 1 # https://hub.docker.com/_/microsoft-dotnet 2 FROM mcr.microsoft.com/dotnet/sdk:5.0 AS build 3 WORKDIR /source 4
阅读全文
posted @ 2021-06-11 14:32 HAPP7
阅读(122)
评论(0)
推荐(0)
编辑
2014年9月28日
C# 利用TextBox的Text属性实现换行加字符 "\r\n"
摘要: 要让一个TextBox显示多行文本就得把它的Multiline属性设置为true,可是如果你是要把TextBox的Text属性设置多行文本时,换行符由两个字符组成:"\r\n"。TextBox1.Text = "First \nSecond \nThird ";运行的时候不会换行。其实主要是因为Te...
阅读全文
posted @ 2014-09-28 09:31 HAPP7
阅读(16491)
评论(3)
推荐(0)
编辑