Windows Azure - The current service model is out of sync

Solution 1:

One of my colleagues hit this issue and after a bit of playing about, the problem was that the two service configuration files (cloud and local) had a different number of Settings.

When he updated the configuration files so that they were in sync it all worked.

A tip would be to use the GUI in Visual Studio to add new settings to both at the same time. The GUI can be accessed by right clicking the web role and selection properties. This should open up a window. Click the Settings tab on the left.

Solution 2:

For me, this was caused by my azure project having been copied from one PC to another (going from Win 7 to Win 8.1 in the process). I am using VS 2013 Community edition on both, but I had upgraded from Azure 2.4 on Win7 to Azure 2.5 on the Win 8.1 machine.

If you unload the azure project and edit the csproj file, you just need to make a small edit (e.g. adding a comment) and save it, so it re-writes itself. This fixed it in my case (where I'd spent ages checking for errors in the CSDEF and CSCFG files). Once I re-saved the csproj file, it worked fine.

Solution 3:

I followed all the answers here and it still didn't work eventually I restarted Visual Studio and it worked.

I believe the solution was the combination of one or more of the answers here + restarting VS.

Solution 4:

This happened to me because one of my cloud configuration files (.cscfg) was missing some key-value pairs that were defined in ServiceDefinition.csdef.

Going over the files manually was a pain. There's an easy way to discover the descrepancies:

  1. In the Solution Explorer, right-click one of the Roles that make up your Cloud Service and click 'Properties' in the context menu.

    enter image description here

  2. The Role properties window will open up grey with an error message saying:

    "Invalid Service Definition or service configuration. Please see the Error List for more details".

  3. Open the Error List window and in some cases you should be able to see a list of the specific discrepancies, complete with file and property names.

    enter image description here