How to open both the backend and frontend project in the same explorer of Rider?
Answered
I have a ASP.NET Core WebAPI project (backend) which I have opened in Rider, I also have an Angular project (frontend) which I also would like to open in the same explorer of Rider. How can I accomplish?
In VS Code this was really easy to do, I could just open the parent folder in VS Code that contains both the .NET Core and Angular project.
I know that in Rider I can do the same by opening the parent folder and then both the projects would be shown in the explorer as File System View. However when I do this I still see the `obj` and `bin` folder there seems no way to hide them when in the File System View of the explorer.
- ExampleApp
- ExampleApp.API
- ExampleApp-SPA
Please sign in to leave a comment.
Hello Onkarjit Singh!
You can open these projects only if they are in one solution.
You can add both your projects in one solution with the following way:
- open one project via File | Open Solution or Project
- be sure that there is a .sln file
- in Solution Explorer right-click on the solutions name and choose Add | Existing project.
I hope this helps! Should you have any other questions, let me know.