lost project file

  • Thread starter Thread starter Tim Seaburn
  • Start date Start date
T

Tim Seaburn

I lost the .sln file for my aspx web project but I still have everything in
wwwroot. I can't seem to create another project with the same name because
it already exists in wwwroot. Any easy way to recreate the project?
TIA,
T
 
I lost the .sln file for my aspx web project but I still have everything
in
wwwroot. I can't seem to create another project with the same name
because
it already exists in wwwroot. Any easy way to recreate the project?
TIA,
T
So you want to recreate the solution, correct? You already have the
projects (and their files). The solution just links a bunch of projects
together into what you could think of as a VS.NET workspace. Solution is
a VS.NET concept....

Just do a File -> New -> Blank Solution, save it wherever you want, and
right click the solution and 'Add Existing Project from Web' I believe.
You then give it the URL of your project(s) one-by-one and it'll load
those into this new solution.
 
Back
Top