Windows Azure Cloud Service Project
A project for creating a scale-able service that runs on Windows Azure.
Contains a logical structure and physical files.
ServiceDefinition.csdef
The service definition file defines the runtime settings for your application including what roles are required, endpoints, and virtual machine size. None of the data stored in this file can be changed when your role is running.
ServiceConfiguration.cscfg
The service configuration file configures how many instances of a role are run and the values of the settings defined for a role.
The data stored in this file can be changed while your role is running.
*.ccproj
Defines the logical structure of the Cloud Project. Does not contain any configuration that is parsed to Azure in fact.
But does contain the mapping from roles to projects and thereby be able to determine what project to deploy to Azure when publish.
References the projcts that are relevant for the cloud deployment.
diagnostics.wadcfg
Defines the logging and performance counter setup for a role
<ServiceDefinitionFileName>.cspkg
Entire Cloud Service Deployment packed into a zip file.
Creating a cloud web role project