- 打包类库成Nuget包:dotnet pack --configuration Release --include-source --include-symbols --no-build,注意,需要在项目csproj文件中增加如下红色部分内容,打包出来的Nuget包才会有注释。
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Version>1.2.1</Version>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>