部分 .csproj 文件
是否可以将 .csproj 中的信息拆分到多个文件中? 有点像 partial class
功能的项目版本。
Is it possible to split the information in a .csproj across more than one file? A bit like a project version of the partial class
feature.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您不能拥有多个主 csproj。 但因为 csproj 的底层接线是使用 msbuild 完成的,所以您可以简单地拥有多个相互导入的部分 csproj。 解决方案文件将看到最派生的csproj。
project1.csproj
project2.csproj
project.csproj - 这是解决方案文件引用的主项目。
最重要的是,使用 msbuild Import 功能,您可以获得部分 csproj 文件,其中每个文件都包含主项目(在我的示例中为 project.csproj)将使用的定义。
当您打开更改的解决方案或项目文件时,Visual Studio 将显示项目的安全警告对话框。 选择选项正常加载项目,然后按确定。 稍后再次打开解决方案时,将不会显示警告,因为正常加载项目的配置存储在suo文件中。
You can not have more than one master csproj. But because the underneath wiring of the csproj is done using msbuild you can simply have multiple partial csproj that import each other. The solution file would see the most derived csproj.
project1.csproj
project2.csproj
project.csproj - this is the main project that is referred by the solution file.
Bottom line is that using msbuild Import feature you can have partial csproj files where each one would contain definitions that the main project (project.csproj in my example) would use.
Visual Studio will show a Security Warning for project dialog when you open your changed solution or project file. Choose the option Load Project Normally and press OK. When opening the solution again later the warning will not be shown because the configuration to Load Project Normally is stored in the suo file.
是的,您可以将信息拆分到多个文件中。 您可以使用导入元素 (MSBuild)。
请注意,如果您尝试执行以下操作,Visual Studio 将为您提供烦人的安全警告打开包含其他项目文件的项目文件。
来自 MSDN 的有用链接:
如何:在多个项目文件中使用相同的目标
请注意,按照约定,外部文件具有 .targets 扩展名。
Yes, you can split information across several files. You can use Import Element (MSBuild).
Note that Visual Studio will give you annoying security warning if you will try to open project file that includes other project files.
Useful linky from MSDN:
How to: Use the Same Target in Multiple Project Files
Note that external files have .targets extension by conventions.
好吧,您可以将多个项目组合成一个大型解决方案,但我认为这并不完全是您的想法,因为在这种情况下每个项目都必须是一个完整的项目。
Well you can have multiple projects combined into one large solution, but I don't think that is quite what you had in mind as each project has to be a complete project in that case.