"The project file was unloaded" when moving VS2010 project to another server

In my case, I saw similar message (Projected was unloaded) and all I had to do was simply re-launching Visual Studio (2017) in Admin mode and the problem went away. Per one of the above answers, I tried to right-click and selected Reload but got a warning that, due to required access to IIS on the machine, I had to launch VS in Admin mode.

HTH


In my case the problem was the .vbproj file had somehow been corrupted so the normal xml code was replaced with a long string of null characters. I noticed this thanks to a file that was generated in the same folder as the project file when I tried to open the project - it was called 'UpgradeLog.htm'. This had an entry saying ' Error on line 1. Expected '<' but found 'null character'.'.. suggests there may have been a recent update to Visual Studio that I hadn't noticed?

Luckily I could use my source control system to revert back to a slightly earlier version - I guess it shows how important it is to have backups!


I experienced the same problem today. Here is what I did and worked for me :

  1. Open the .sln file.
  2. Right click on the project folder and click Reload project.
  3. You will see the projects and folders that you originally had.
  4. You will see .xml publish file . Double click it .. You should be good to go now.

I had this problem today and it took me a while to figure out what was going on.

Your problem is most likely that your solution was originally made with a Visual Studio configuration that contained support for certain project types (such as "Windows Service" or some other exotic project type). The Visual Studio configuration you are using to import your solution does not have that support. In other words,

  • there is probably nothing wrong with your solution,
  • there is probably nothing wrong with your project,
  • there is probably nothing wrong with any of the files (as you mentioned they do display briefly, giving you a second of hope)

Just run the installer on the new Visual Studio and make sure the support is enabled for all the project types you need and try again.