dotnet core swagger xml发布丢失问题
修改csproj文件,添加以下
修改csproj文件,添加以下
严重性 代码 说明 项目 文件 行 禁止显示状态
错误 Web deployment task failed. (已使用指定的进程(“Web Management Service”)连接到远程计算机(“119.23.39.55”),但未能验证服务器的证书。如果你信任该服务器,请再次连接并允许不信任的证书。 在以下位置了解更多信息: http://go.microsoft.com/fwlink/?LinkId=221672#ERROR_CERTIFICATE_VALIDATION_FAILED。)
已使用指定的进程(“Web Management Service”)连接到远程计算机(“119.23.39.55”),但未能验证服务器的证书。如果你信任该服务器,请再次连接并允许不信任的证书。 在以下位置了解更多信息: http://go.microsoft.com/fwlink/?LinkId=221672#ERROR_CERTIFICATE_VALIDATION_FAILED。
基础连接已经关闭: 未能为 SSL/TLS 安全通道建立信任关系。
根据验证过程,远程证书无效。 WebApi 0
打开PublishProfiles下的WebApi.pubxml文件
在<_SavePWD>True</_SavePWD>后
添加
Web服务器安装WebDAV发布和管理服务
服务器安装WebDeploy
https://www.iis.net/downloads/microsoft/web-deploy
IIS管理器权限添加用户
网站——部署——启用WebDeploy发布
开放相关端口,如8172
安装文泉驿正黑、文泉驿微米黑字体
sudo apt-get install ttf-wqy-zenhei
安装locales软件包
sudo apt-get install locales
配置locales软件包
sudo dpkg-reconfigure locales
界面中钩选上“zh_CN.UTF-8”
空格键选择 回车确认
默认的区域选“zh_CN.UTF-8”
安装中文输入法
sudo apt-get install scim-pinyin
安装屏幕校准
sudo apt-get install xinput-calibrator
执行
xinput_calibrator
出现
Section "InputClass"
Identifier "calibration"
MatchProduct "1c25000.rtp"
Option "Calibration" "3980 226 3564 343"
Option "SwapAxes" "0"
EndSection
在终端内输入:sudo nano /etc/X11/xorg.conf
将上面的6行触摸相关的添加到这个conf里,或者只改那四个数字
按ctrl+o保存 ctrl+x 退出
最后重启
sudo reboot
安装
sudo apt-get install git
配置
git config --global user.name "用户名"
git config --global user.email "邮箱"
SSH公钥
ssh-keygen -t rsa -C "邮箱"
查看SSH公钥
cat fileName.pub
把SSH公钥添加到码云
https://gitee.com/profile/sshkeys
把私钥添加到ssh-agent
ssh-add id_rsa
若执行ssh-add出现
Could not open a connection to your authentication agent
先执行 ssh-agent bash