我必须创建一个nuget包但我有一个问题:我想添加一个名为" Config"的文件夹,这个文件夹包含三个XML文件。
在网上搜索后,我尝试了两种方式(编辑我的nuspec文件)将此自定义文件夹添加到我的nuget包中:
1)
<file src="Config\*.*" target="content\Config" />
2)
<file src="Config\*.*" target="Config" />
......但其中没有一个似乎有效!
我尝试在Test的解决方案(控制台应用程序)上添加此软件包,dll已附加到解决方案但是&#34; Config&#34;文件夹没有出现在解决方案的根目录中。
有什么问题?提前谢谢!
Lollo
修改
nuget spec and project directory
nuget spec opened into nuget package explorer
我的Nuget规范文件:
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>Onions.Framework.Core</id>
<version>1.0.0</version>
<title>Onions Framework Core</title>
<authors>Onions Corporate</authors>
<owners>Onions Corporate</owners>
<licenseUrl>http://url/framework/core/license.txt</licenseUrl>
<projectUrl>http://url/framework/core/</projectUrl>
<iconUrl>http://url/framework/icon.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>no description</description>
<releaseNotes></releaseNotes>
<copyright>Onions Corporate</copyright>
<tags></tags>
<dependencies>
<dependency id="Castle.Core" version="4.2.1" />
<dependency id="Castle.Windsor" version="4.1.0" />
<dependency id="CommonServiceLocator" version="2.0.1" />
<dependency id="FluentNHibernate" version="2.0.3" />
<dependency id="Iesi.Collections" version="4.0.3" />
<dependency id="log4net" version="2.0.8" />
<dependency id="Newtonsoft.Json" version="10.0.3" />
<dependency id="NHibernate" version="4.1.1.4000" />
</dependencies>
<summary></summary>
</metadata>
<files>
<file src="bin\Release\netcoreapp2.0\*.dll" target="lib\netcoreapp2.0" />
<file src="bin\Release\netcoreapp2.0\*.pdb" target="lib\netcoreapp2.0" />
<file src="Config\*.*" target="content\Config" />
</files>
</package>
答案 0 :(得分:2)
有什么问题?提前谢谢!
“Config”文件夹应出现在项目的根目录中,而不是解决方案。
那是因为NuGet团队deprecated solution level packages在NuGet 3.0中。
所以来自nuget包的内容文件应该添加到项目中,而不是解决方案。
此外,根据From a convention-based working directory:
基于约定的工作目录content
,将内容复制到项目根目录。
“Config”文件夹应出现在项目的根目录中。
<强>更新强>
我根据您的要求编辑了我的问题:)我正在使用.NET core 2.0
由于您测试的项目类型是.net core。您应该使用contentFiles
代替content
。 content
用于packages.config。查看Using the contentFiles element for content files和博客NuGet ContentFiles Demystified了解详情。
所以你的.nuspec
文件应该是:
<?xml version="1.0"?>
<package >
<metadata>
<id>Onions.Framework.Core</id>
...
<contentFiles>
<files include="any/any/Config/*.*" buildAction="Content" copyToOutput="false" flatten="true" />
</contentFiles>
</metadata>
<files>
<file src="bin\Release\netcoreapp2.0\*.dll" target="lib\netcoreapp2.0" />
<file src="bin\Release\netcoreapp2.0\*.pdb" target="lib\netcoreapp2.0" />
<file src="contentFiles\any\any\Config\*.*" target="contentFiles\any\any\Config" />
</files>
</package>
nuget包应该如下所示:
注意:创建新软件包时,请不要忘记在C:\Users\<UserName>\.nuget\packages
文件夹中删除此软件包的nuget缓存,否则,它始终会安装旧软件包。
希望这有帮助。