如何在octopack中使用nuspec中设置的版本号?
Posted
技术标签:
【中文标题】如何在octopack中使用nuspec中设置的版本号?【英文标题】:How to use the version number set in nuspec in octopack? 【发布时间】:2017-08-09 11:48:28 【问题描述】:我有一个 nuspec 文件,其中包含有关 nuget 包的信息,它还包含一个版本。
是否可以让 OctoPack 使用 nuspec 文件中指定的版本?现在它会自动获取日期。
我已经尝试过 OctoPackNuSpecFileName 参数,但它没有从我的 nuspec 文件中接管版本。
nuspec 文件:
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>Tc_Oct_App</id>
<title>Tc_Oct_App</title>
<version>1.0.0</version>
<authors>Rick</authors>
<owners>Rick</owners>
<licenseUrl>http://yourcompany.com</licenseUrl>
<projectUrl>http://yourcompany.com</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>A sample angular project</description>
<releaseNotes>This release contains the following changes...</releaseNotes>
</metadata>
</package>
我的输出是 Tc_Oct_App.Release.2017.8.9.134639.nupkg。
【问题讨论】:
【参考方案1】:包版本取自参数或程序集。我猜您看到的日期来自 AssemblyInfo.cs 版本。
您是否尝试过将 /p:OctoPackPackageVersion=<version>
作为 MSBuild 参数传递?
更多信息: Version numbers documentation
【讨论】:
以上是关于如何在octopack中使用nuspec中设置的版本号?的主要内容,如果未能解决你的问题,请参考以下文章
OctoPack 和 OD 通道:如何创建可以通过管道传输到版本通道的包版本?