nuget 没有在 project\bin 目录中安装文件

nuget not installing file in project\bin directory

使用 VS 2019 .NET Framework 4.8 对于我的 C# class 库项目,我 运行 nuget spec 为 dll 及其依赖项创建一个 nuspec 文件:

<?xml version="1.0" encoding="utf-8"?>
<package >
  <metadata>
    <id>MyId</id>
    <version>1.0.0</version>
    <title>MyTitle</title>
    <authors>Me</authors>
    ....
    <dependencies>
      <dependency id="dll1" version="1.0.0" />
      <dependency id="dll2" version="2.0.0" />
    </dependencies>
  </metadata>
</package>

构建 nuget 包没有问题。在我的消费项目 (MyProject) 中,我安装了那个包,在构建 MyProject 之后,class 库 dll 和依赖文件被放置在 MyProject\bin 目录中。太好了。

但是我需要将另一个文件放入目录 MyProject\bin,我们将该文件命名为 MyFile.txt。我首先尝试使用元素:

  ..... 
      <dependency id="dll2" version="2.0.0" />
    </dependencies>
  </metadata>
  <files>
   <file src="MyFile.txt" target="lib" />
  </files>
</package>

运气不好。虽然该文件位于 packages\lib 文件夹中,但并未放置在 MyProject\bin.

然后我删除了元素并尝试了标签内的元素:

  .....  
    <contentFiles>
      <files include="MyFile.txt" buildAction="None" copyToOutput="true" flatten="true" />
    </contentFiles>
  </metadata>
</package>

也不走运。有没有办法完成我需要做的事情?看起来它可能涉及在我的 class 库根文件夹中有一些文件夹,但不确定是什么文件夹(内容?)或如何在 nuspec 文件中正确引用它们。谢谢

忘记用我找到的答案更新此 post。 使用 <files><file /></files> 逻辑解决了它。涉及到target属性的使用,在value中使用content关键字:

  <files>
    <file src="content\bin\MyFile.txt" target="content\bin" />
  </files>

它在文档中,不幸的是,即使多次阅读我也错过了。参见 https://docs.microsoft.com/en-us/nuget/reference/nuspec#dependencies-element