1

因此,当我创建一个 NuGet 包并将我的网站文件放入 /content 文件夹(在 NuGet 包内)时,它会导致在 Octopus 在目标服务器上提取 NuGet 包时创建一个 /content 文件夹。

在不创建 /content 文件夹的情况下仅提取 /content 文件夹中的文件夹和文件的最佳方法是什么?

干杯,

——李

4

1 回答 1

1

事实证明,您只需删除 target="content" 文件就会被放入根目录中。正是我想要的。

所以而不是

<files>
  <file src="bin\Release\**\*.*" target="content" /> 
</files>

以下应该工作..

<files>
  <file src="bin\Release\**\*.*" /> 
</files>

——李

于 2014-07-03T14:27:00.477 回答