I have to maintain an Application where Front End is done using Angular and Back End using .NET Core/ASP.NET Core C# Controllers.
Problem is that Front End and Back End are not put to their own directories like below:
Application\FrontEnd
Application\BackEnd
They reside in same directory or at least typescript config, webpack, .sln solution file etc. I can use VSCode or Visual Studio but problem is that both typescript and C# files are mixed when starting debugging.
Is it possible to configure VSCode (Visual Studio is okay if possible) so that both Front and Back are debugged as their own.
I tried to modify launch.json but didn't succeeded. I can't refactor this Application.
So, is it possible to configure launch.json to run Front and Back in own "processes" and how or what could be the solution?
Thanks for All,