dotnet 核心构建 <CopyToOutputPathectory>PreserveNewest</CopyToOutputPathectory> 没有工作
dotnet core build <CopyToOutputPathectory>PreserveNewest</CopyToOutputPathectory> no working
我正在玩 dotnet 核心,我开始了一个(非常)简单的博客项目(使用 NancyFx 和 EF 核心)。
除了在构建时复制视图资源外,一切都运行良好。我的 cproj 指定以下内容:
<Content Include="views\demo\*;views\blog\*">
<CopyToOutputPathectory>PreserveNewest</CopyToOutputPathectory>
</Content>
但是当 运行 dotnet 构建时,我的视图/* 文件没有像我预期的那样复制到 bin\Debug\netcoreapp1.0。 https://github.com/b3b00/NaApp
提供完整的应用程序代码
这个功能是不是像我预期的那样工作或者我错过了什么?
现在我唯一的 "workaround" 是手动复制这些文件
感谢您的帮助
奥利维尔
您的代码中有错字。应该是 CopyToOutputDirectory
而不是 CopyToOutputPathectory
.
我正在玩 dotnet 核心,我开始了一个(非常)简单的博客项目(使用 NancyFx 和 EF 核心)。 除了在构建时复制视图资源外,一切都运行良好。我的 cproj 指定以下内容:
<Content Include="views\demo\*;views\blog\*">
<CopyToOutputPathectory>PreserveNewest</CopyToOutputPathectory>
</Content>
但是当 运行 dotnet 构建时,我的视图/* 文件没有像我预期的那样复制到 bin\Debug\netcoreapp1.0。 https://github.com/b3b00/NaApp
提供完整的应用程序代码这个功能是不是像我预期的那样工作或者我错过了什么? 现在我唯一的 "workaround" 是手动复制这些文件
感谢您的帮助
奥利维尔
您的代码中有错字。应该是 CopyToOutputDirectory
而不是 CopyToOutputPathectory
.