我创建了一个nuget包.我把一些文件和文件夹放在“内容”文件夹中,效果很好.所以我添加了一个带有dll的bin文件夹,并把它放在我的nuspec文件中:
<files> src="bin\*.dll" target="lib" /> </files>
dll很好地放在引用中,但内容不再被复制了.
我怎样才能让他们都工作?
@编辑
我知道有这个:
<file src="content\Controllers\*.*" target="Controllers" /> <file src="content\Views\Account\*.*" target = "Views\Account" /> <file src="bin\*.dll" target="lib" />
当您在nuspec中定义文件部分时,我们不再执行基于“自动”/“约定”的包创建.我们看到它正如您告诉我们要包含的内容所以我们不包括列表中没有的内容.只需将内容文件夹添加到该列表即可.
原文链接:https://www.f2er.com/windows/363754.htmlNuSpec文件“files”部分告诉NuGet在解包时将文件放在包中的文件不在sln / proj中.你想这样写:
<file src="content\Controllers*.*" target="content\Controllers" /> <file src="content\Views\Account*.*" target = "content\Views\Account" /> <file src="bin*.dll" target="lib" />