【发布时间】:2018-03-03 02:35:02
【问题描述】:
当我在 Rider (net core) 中按下运行按钮时,它会运行以下命令:
/usr/local/share/dotnet/dotnet /pathtomyproject/myproject.dll
但我需要使用参数“watch”运行项目,如果我在 Rider Edit Configurations 的参数中编写此命令,我会收到错误:
Unhandled Exception: System.FormatException: Unrecognized argument format: 'watch'.
我知道使用监视工具运行的是dotnet watch run,我也知道我可以在终端中运行该命令。
我的问题是,当我按下“运行”按钮时,是否可以将 Rider 配置为以这种方式运行?或者...也许 Rider 有一个我不知道的“编辑并继续”功能?
【问题讨论】:
标签: c# .net-core watch jetbrains-ide rider