如何计算 ac# 项目文件 (.csproj) 的输出

发布于 2024-11-13 06:42:40 字数 125 浏览 1 评论 0原文

我有一个非常大的 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

呆° 2024-11-20 06:42:40

在项目下 ->项目构建顺序,滚动到底部并开始向后搜索。如果大多数其他项目都是依赖项,则相应的项目可能位于底部附近。

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.

岁月苍老的讽刺 2024-11-20 06:42:40

找到了答案。

  <OutputType>WinExe</OutputType>

ok在 csproj 文件中

ok Found the answer

  <OutputType>WinExe</OutputType>

in the csproj file.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文