Posts

Showing posts from December, 2025

saprate repo managemnt

Managing React and .NET Projects in One Repository 🚀 Managing React and .NET Projects in One Repository Many developers want to keep a .NET backend and a React frontend inside one repository, while still opening each project separately and keeping their Git activities independent. In this guide, you’ll learn the best way to organize both projects inside the same repo and open each one in its own environment: Visual Studio for .NET and VS Code for React. 📁 Recommended Folder Structure The cleanest approach is to keep both projects inside one repository using separate folders: my-repo/ ├── backend-dotnet/ │ ├── MyApi.sln │ └── ... └── frontend-react/ ├── package.json └── ... 🧑‍💻 Opening Each Project Separately ✔ Open the React Project in VS Code In VS Code, go to: File → Open Folder → select frontend-react ...