gpt4 book ai didi

visual-studio - 在 Visual Studio 中对文件进行分组

转载 作者:行者123 更新时间:2023-12-03 05:19:28 25 4
gpt4 key购买 nike

我正在考虑在 Visual Studio 中整理我的项目布局,我想知道是否有任何 hack、插件或技巧可以将 .xml 文件与同名的 .cs 文件关联起来 因此它们出现在我的解决方案导航器/资源管理器中。

类似于代码隐藏文件与其 aspx 关联的方式。

alt text

欢迎任何建议。谢谢

最佳答案

在您的项目文件中:

<Compile Include="FileA.cs"/>
<Compile Include="FileA.xml">
<DependentUpon>FileA.cs</DependentUpon>
</Compile>

或者您可以使用VSCommands 2010Group Items命令扩展名。

编辑:以防万一您的文件位于文件夹中,请勿在 DependentUpon 标记中包含文件夹名称。例如,如果您的文件位于 Helpers 文件夹中:

<Compile Include="Helpers\FileA.cs"/>
<Compile Include="Helpers\FileA.xml">
<DependentUpon>FileA.cs</DependentUpon>
</Compile>

关于visual-studio - 在 Visual Studio 中对文件进行分组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3617539/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com