gpt4 book ai didi

visual-studio - Visual Studio 的 "Start Without Debugging"在 JetBrains Rider 中是否等效?

转载 作者:行者123 更新时间:2023-12-05 06:51:45 24 4
gpt4 key购买 nike

在Rider中是否有相当于VS的Start Without Debugging?我知道我可以“运行”与“调试”,但每次都会启动一个新的 IISExpress 实例,并在我点击“停止”时停止它。我希望站点启动并运行并允许我更改代码和重建,然后刷新站点,所有这些都无需再次运行/停止。我依赖于 VS 中的这种行为。 Rider 可以做同样的事情吗?

最佳答案

相同的 Ctrl+F5 组合键在 Rider 中对我有用,就像在 VS 中一样。

但是,我相信您想要的是添加一个 watch 构建配置。为此,请编辑您的 Properties\launchSettings.json 并添加与此类似的 watch 配置文件

  "profiles": {
"my webapp": { ... }
},
"my webapp Watch": {
"commandName": "Executable",
"executablePath": "dotnet",
"workingDirectory": "$(ProjectDir)",
"commandLineArgs": "watch run --local-kestrel=1",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
}
}

之后,在配置下拉列表中选择新的配置文件并按 Ctrl+F5 以在不附加调试器的情况下运行它。

关于visual-studio - Visual Studio 的 "Start Without Debugging"在 JetBrains Rider 中是否等效?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66103070/

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