英文:
How to use Integrated Terminal Tool Window instead of external console Window for ASP.Net Core projects in Visual Studio?
问题
在使用Visual Studio进行ASP.Net Core项目开发过程中,任务栏中会出现一个额外的图标,用于控制台窗口。在使用ALT+TAB组合切换窗口时,这可能有点让人讨厌(我有点过于执着)。是否可以使用集成终端工具来满足这个需求,并尽量保持任务栏清爽?
英文:
In the ASP.Net Core projects development process by Visual Studio, an additional icon appears in the taskbar for the console window. This can be a little bit annoying during windows change by ALT+TAB combination (I am a little bit obsessed). Is it possible to use Integrated Terminal Tool for this necessity and keep the taskbar clean as possible?
答案1
得分: 2
该功能随Visual Studio 2022版本17.5更新发布。
Visual Studio 2022版本17.5中的新功能摘要
集成终端中的ASP.NET输出
• 现在,Visual Studio中启动的ASP.NET Core应用程序将输出重定向到集成终端工具窗口,而不是外部控制台窗口。
您可以将其设置为ASP.Net Core选项下的集成终端。
- 打开Visual Studio
- 选择工具菜单
- 然后选择选项
- 然后选择项目和解决方案
- 接着选择ASP.NET Core
- 在运行Web服务器中选择集成终端
- 点击确定
英文:
The feature came with Visual Studio 2022 version 17.5 update.
> Summary of What's New in this Release of Visual Studio 2022 version 17.5
>
> ASP.NET Output in the Integrated Terminal
>
> • ASP.NET Core applications launched in Visual Studio now redirect output to the Integrated Terminal Tool Window instead of an external console Window.
It is possible to set it as Integrated Terminal under ASP.Net Core options.
- Open Visual Studio
- Select Tools Menu
- Then Options Selection
- Focus Projects and Solutions
- And then ASP.NET Core
- Next to Run web server in
- Choose Integrated Terminal
- Click OK
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论