Visual Studio Error: The project file ' ' has been renamed or is no longer in the solution.
If you ever got this message "Visual Studio Error: The project file ' ' has been renamed or is no longer in the solution." while building a web application, probably you might have added an silverlight project to your solution earlier and removed it.
The cause for this problem is, visual studio removes the silverlight project from your solution when we delete that but the reference it created while adding that project will still exist.
So we have to manually remove the reference to that project.
It will be removed from the project properties window, silverlight projects tab.
Remove the unwanted references related to the projects which you removed from the solution.
Thats it, now you can build your web application.
Happy Coding...
Labels: .net2.0, .net3.5, project, properties, references, silverlight, visual studio, vs2008
Post a Comment