在我的.net core
应用程序中,我希望将部分文件放置在给定文件下,就像在.net Framework应用程序中一样,使用DependentUpon
中的标签csproj
。
如图所示,我希望所有Program.*.cs
文件都在Program.cs
下。
但是,在.csproj
文件中,我没有看到列出的文件:
有没有办法在.net core
应用中做到这一点?
答案 0 :(得分:2)
是的,您只需要在ItemGroup
中放入一个条目即可更新来自全局的隐式Compile
元素。我个人为此使用了一个单独的ItemGroup
元素,而不再依赖于您:
<ItemGroup>
<Compile Update="Program.*.cs">
<DependentUpon>Program.cs</DependentUpon>
</Compile>
</ItemGroup>