I have an old VS2008 solution that had one project in it.
When I double-click on the .sln file it says that nothing can be found (I had renamed some directories).
So now what is the best way to take my main files (Window1.xaml, App.xaml, Properties folder, and about 10 other class files) and recreate a solution and project for these main files again?
ANSWER:
Thanks Gerrie, you were right, manually was the only way:
- created new WPF solution
- recreated all folders
- right-clicked project, add existing items, changed to
*.*
, added all at once - for each folder, add files as in above step
So in my case I was done in 5 minutes, but for larger solutions, one would hope there is an open-source tool or VS2008/VS2010 feature for this.