.net核心应用程序中是否有DependentUpon选项?

时间:2018-06-21 14:26:26

标签: c# .net-core csproj

在我的.net core应用程序中,我希望将部分文件放置在给定文件下,就像在.net Framework应用程序中一样,使用DependentUpon中的标签csproj

如图所示,我希望所有Program.*.cs文件都在Program.cs下。

enter image description here

但是,在.csproj文件中,我没有看到列出的文件:

enter image description here

有没有办法在.net core应用中做到这一点?

1 个答案:

答案 0 :(得分:2)

是的,您只需要在ItemGroup中放入一个条目即可更新来自全局的隐式Compile元素。我个人为此使用了一个单独的ItemGroup元素,而不再依赖于您:

<ItemGroup>
  <Compile Update="Program.*.cs">
    <DependentUpon>Program.cs</DependentUpon>
  </Compile>
</ItemGroup>