I have a ASP.NET Core project which uses TypeScript.
Is it possible to debug TypeScript code in Visual Studio?
I found two conditions that will not break in Visual Studio 2017(ver15.9.5).
1) .UseContentRoot
In the WebHost.CreateDefaultBuilder method in Program.cs, if you change the content route using UseContentRoot(), VS will not Break.
2) wwwroot Folder
You can change webroot by UseWebRoot(), This works correctly.
But if you delete "wwwroot" folder in the project root, VS will not Break.