I am working on a website on visual studio, I am a little new to visual studio and I am trying to move my whole directory for my website to my google drive so I can work on it on multiple computers.
How would I go about changing the source files located in the project file for visual studios.
Or is there an easier way?
Easiest way is to Remove the project in Visual Studio and then Add Existing Project and point to your new location.
You could alternatively use a text editor to edit the
.sln
file. The top of the file definesProject
elements:The second property is the path (relative or absolute) to the csproj file representing the project.