我有一个使用nuspec文件在MyGet上构建的包(类似于下面的内容)。这已经工作了一段时间,但在几天内似乎没有创建content
目录。
但是,如果我在本地运行nuget pack
,它可以正常工作并包含所有文件。我试图使用contentFiles
,但这不起作用,因为项目使用旧的packages.config
方法。
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>MyProject</id>
<version>1.4.0.2</version>
<title>Project Description</title>
<authors>0Neji</authors>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Description</description>
<summary>Summary</summary>
<releaseNotes>Release notes</releaseNotes>
<language>en-GB</language>
<dependencies>
<group targetFramework=".NETFramework4.6.1">
<dependency id="UmbracoCms" version="7.6.4" />
<dependency id="usync.snapshots" version="1.0.2.740" />
<dependency id="SharpRaven" version="2.1.0" />
<dependency id="Autofac.Mvc5" version="4.0.2" />
<dependency id="Autofac.WebApi2" version="4.1.0" />
</group>
</dependencies>
</metadata>
<files>
<file src="robots.txt" target="content\robots.txt" />
</files>
</package>
MyGet成功运行并构建软件包,但是当我下载项目时,content
目录丢失了。
提前感谢您的帮助。
答案 0 :(得分:0)
在MyGet上,nuget包通常会针对.csproj(而不是直接的.nuspec)运行。这会在您的机器上产生相同的结果吗?
构建日志也提到&#34; pack&#34;使用nuget pack或msbuild / t进行操作:打包?