我有一个 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。