英文:
Configure Rider to debug .Net and Angular
问题
我在处理 Rider 配置时遇到了困难。我创建了一个带有 Angular 的 .Net 项目 - 当我开始调试时,只触发了 .Net 的断点。我应该怎么做才能同时调试 TypeScript 和 .Net?这是我的调试配置如何看起来的:
英文:
I struggle with Rider configuration. I created a .Net project with Angular - when I start the debug, I hit only the .Net breakpoints. Exactly what should I do so I can debug typescript and .Net at the same time?
答案1
得分: 1
现在启动_Angular CLI服务器_,等待一些秒钟以便应用程序被编译,然后运行_Angular应用程序_。
希望这有所帮助!
英文:
First of all, you have to start the Angular server so that it compiles the app:
The next step is to configure the Angular app itself so that the browser will start:
Now start Angular CLI Server, wait some seconds so that the app gets compiled, and then run Angular App.
Since I'm a lazy guy, I automated this step as well:
Hope that helps!
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论