我正在使用 TFS2012 发布C#Visual Studio 2012项目的 nuget包。在这个解决方案中有许多项目,我可以成功发布到特定的存储库。对于我昨天添加的一个项目,发布者像往常一样创建<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet"/>
<body>
<div class="nav"></div><!-- Nav -->
</body>
文件,但也创建了*.nupkg
。
我无法弄清楚,项目中的哪个设置可能会导致此问题。
*。项目的nuspec文件:
*.symbols.nupkg
存储库中的结果如下所示:
文件1:xxx.xxx.xxx.0.1.1.nupkg
文件2:xxx.xxx.xxx.0.1.1.symbols.nupkg
但它看起来应该是这样的:
文件1:xxx.xxx.xxx.0.1.1.nupkg
编辑1:
我使用Visual Studio 2012的外部工具发布到存储库:
命令:<?xml version="1.0"?>
<package>
<metadata>
<id>xxx.xxx.xxx</id>
<version>0.1.1</version>
<title></title>
<authors>xxx</authors>
<owners>xxx</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description></description>
<releaseNotes>
- first release
</releaseNotes>
<copyright>Copyright 2016</copyright>
</metadata>
<files>
<file src="bin\$configuration$\$id$.pdb" target="lib\net40\" />
</files>
</package>
参数:C:\Windows\Microsoft.NET\Framework64\v4.0.30319\MSBuild.exe
编辑2:
此外,我尝试在本地构建软件包并将其发布到本地目录。相同的结果