Reputation: 3100
Are some .NET language packs deployed on Azure, or are we limited to en-US? This is required to get localized standard error messages. We are using Azure Cloud Services. We need at least French for now.
This is related to the following question, except that this one is about .NET: Windows Azure Language Pack
Upvotes: 4
Views: 704
Reputation: 29722
Since the language pack does not come installed on your Azure Instance you will have to package the installer with you deployment and create a Startup Task to install the language pack when your instance initializes.
This will make your deployments run a bit longer, but it should meet your needs.
Upvotes: 1