1.创建类库方法
2.双击项目配置
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<!--以下是我们自己添加的-->
<!--版本号,重要性不必多说-->
<Version>0.0.1</Version>
<!--添加该配置,在编译时进行打包-->
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<!--添加该配置才会生成注释文件,默认无注释-->
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
</Project>
3.打包
// 该命令在项目根目录下执行
dotnet build -c=Release
4.打包后生成文件 nupkg
已成功创建包“.\bin\Release\xxx.nupkg”
5.创建NuGet账号
将xxx.nupkg
推送至nuget仓库,可以自己搭建,也可以是微软官方nuget仓库
在www.nuget.org注册一个账号,然后获取apikey
6.执行推送命令
// $apikey 替换为你的apikey
dotnet nuget push ./bin/Release/xxxx.nupkg -k $apikey -s https://api.nuget.org/v3/index.json --skip-duplicate
7.推送成功
8.过几分钟搜索包的名称
9.然后就可调用了