如何计算 ac# 项目文件 (.csproj) 的输出
我有一个非常大的 .NET 解决方案,其中包含数百个项目(全部为 C#),我如何确定哪些项目是要设置为启动项目的应用程序项目。
我正在考虑在 csproj 文件中查找某些表明它是可执行文件的关键字。
谢谢
I have a very large .NET solution with hundreds of projects (all c#) how can I figure out which of the projects is the application project to set as the start up project.
I was thinking of grepping the csproj files for some keyword that indicates it's an executable.
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在项目下 ->项目构建顺序,滚动到底部并开始向后搜索。如果大多数其他项目都是依赖项,则相应的项目可能位于底部附近。
Under Project -> Project Build Order, scroll to the bottom and start searching backwards. The appropriate project is likely near the bottom if most of the other projects are dependencies.
找到了答案。
ok在 csproj 文件中
ok Found the answer
in the csproj file.