nuspec and csproj package version tags(nuspec 和 csproj 包版本标签)
问题描述
我有一个发布到 NuGet 的新 ASP/.NET Core 项目.当我发布一个新包时,建议使用什么方法来保持 x.csproj 和 x.nuspec 中的版本标签同步?
I have a new ASP/.NET Core project that I publish to NuGet. What's the recommended approach to keep the version tags in x.csproj and x.nuspec in sync when I publish a new package?
推荐答案
使用新的 .csproj 格式,您可以 在 .csproj 文件中添加所有信息以生成 NuGet 包.不再有理由使用 .nuspec 文件.
With new .csproj format, you can add all of the information to generate NuGet packages in the .csproj file. There is no longer a reason to use a .nuspec file.
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyTitle>My NuGet Project</AssemblyTitle>
<Description>Something I decided to release on NuGet.</Description>
<PackageTags>my;project;whatever;</PackageTags>
<Authors>Me (who else)</Authors>
<RepositoryUrl>https://github.com/theprojectname</RepositoryUrl>
<PackageLicenseUrl>https://github.com/theprojectname/blob/master/LICENSE.txt</PackageLicenseUrl>
<PackageProjectUrl>http://myproject.org/</PackageProjectUrl>
<PackageIconUrl>https://github.com/theprojectname/blob/master/branding/logo/icon-128x128.png?raw=true</PackageIconUrl>
<Copyright>Copyright © 2006 - 2018 Me</Copyright>
</PropertyGroup>
...
</Project>
某些元素(例如 <PackageId>)默认使用项目文件其余部分的设置,因此您不需要添加它们,除非您需要它们不同比默认值.
Some of the elements (such as <PackageId>) default to using settings from the rest of the project file, so you don't need to add them unless you need them to be different than the defaults.
请注意,您必须使用 dotnet 包(而不是旧的 NuGet.exe CLI) 或 Visual Studio 2017 以利用此功能.
Note you must use dotnet pack (rather than the old NuGet.exe CLI) or Visual Studio 2017 in order to utilize this feature.
这篇关于nuspec 和 csproj 包版本标签的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:nuspec 和 csproj 包版本标签
- C# 中多线程网络服务器的模式 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- 输入按键事件处理程序 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
