https://www.cnblogs.com/Nine4Cool/p/13841800.html  这个是一些综合链接

 

nuget.org 获取API.Keys

  https://blog.csdn.net/lindexi_gd/article/details/83176151    使用Nuget.Server时,需要用到API.Keys

Nuget.Server

     1、https://www.cnblogs.com/cqhaibin/p/8051834.html  这个在Chrome下图片不显示,可以用火狐查看。

     2、https://www.chengxulvtu.com/linux-net-core-nuget-server/   simple-nuget-server镜像

如果以后忘记了NUGET_API_KEY,可以通过以下命令查看:

docker inspect <CONTAINER-NAME> OR <CONTAINER-ID>
然后在结果里找到
Config/Env/NUGET_API_KEY节点。

 

 

.Net Core 打包

    https://www.cnblogs.com/shanyou/p/5814683.html  主要是介绍dotnet pack  参数

 

  nuget 打包项目,如果存在项目引用  加上  -IncludeReferencedProjects 的参数即可把依赖项目一起打包

 

vs 把nuget上传批处理命令添加到项目右键

     https://www.cnblogs.com/liuxiaoji/p/9605851.html 

     将nuget与VS直接集成,实现一键上传等功能  https://www.cnblogs.com/geyunfei/p/3615683.html,注意点:命令是用nuget.exe,如果是.net core 需要调整下参数信息

dotnet pack %1  -c Release -o E:\Develop\TFS\Nuget\Temp
dotnet nuget push -s http://yournugetsiite:8088 -k yourapikey E:\Develop\TFS\Nuget\Temp\%~2.*.nupkg
move E:\Develop\TFS\Nuget\Temp\*.nupkg E:\Develop\TFS\Nuget\

 

  

Nexus

https://www.cnblogs.com/daikainan/p/14288044.html

https://www.cnblogs.com/Erik_Xu/p/9211471.html  

    2. 禁止SELINNUX,这个没用,对挂载目录加了权限 chmod 777 /home/nexus/nexus-data

 

工具类:

NuGetPackageExplorer 也可以做push  https://www.cnblogs.com/caihuaxing/p/11010000.html

https://www.nuget.org/packages/dotnet-validate  NuGetPackageExplorer

https://www.nuget.org/downloads  nuget.exe下载,.net framework 需要下载nuget.exe, .net core 使用dotnet nuget命令,

set the local path of NuGet.exe into your path environment variable.  还没做。

 

碰到的问题:

1)docker pull sonatype/nexus3

  Using default tag: latest
  Error response from daemon: pull access denied for nexus3, repository does not exist or may require 'docker login': denied: requested access to the resource is denied

      使用docker  login后依然不行,使用 docker run -d -p 5501:8081 --name nexus sonatype/nexus3 直接启动容器的方式,会自动拉取sonatype/nexus3 镜像。不知道为什么........

     

 

2)nexus3 容器 status 为Exited (255)

 

   使用docker logs nexus3 查看日志:

  mkdir: cannot create directory '../sonatype-work/nexus3/log': Permission denied

  mkdir: cannot create directory '../sonatype-work/nexus3/tmp': Permission denied

解决方案:

#启动nexus时可能会遇到权限的问题,对挂载文件夹赋予最高权限
chmod 777 /home/nexus/nexus-data

 

 3)查看日志

 docker logs nexus3 -f