Build: September 24 Dev build
We should be displaying a link to download the WebPI Package but we are not.
> Could not find any resources appropriate for the specified culture or the neutral culture. Make sure >"Microsoft.NodejsTools.Resources.resources" was correctly embedded or linked into assembly >"Microsoft.NodejsTools.ProjectWizard" at compile time, or that all the satellite assemblies required are >loadable and fully signed.
I am fairly certain the issue is in CloudServiceWizard.cs
```
var dlg = new TaskDialog(provider) {
Title = SR.ProductName,
MainInstruction = SR.GetString(SR.AzureToolsRequired),
Content = SR.GetString(SR.AzureToolsInstallInstructions),
AllowCancellation = true
};
```
These resources aren't in the correct places and causes the exception to occur.
Comments: Verified this on 20926.01. Fixed. Closing.
We should be displaying a link to download the WebPI Package but we are not.
> Could not find any resources appropriate for the specified culture or the neutral culture. Make sure >"Microsoft.NodejsTools.Resources.resources" was correctly embedded or linked into assembly >"Microsoft.NodejsTools.ProjectWizard" at compile time, or that all the satellite assemblies required are >loadable and fully signed.
I am fairly certain the issue is in CloudServiceWizard.cs
```
var dlg = new TaskDialog(provider) {
Title = SR.ProductName,
MainInstruction = SR.GetString(SR.AzureToolsRequired),
Content = SR.GetString(SR.AzureToolsInstallInstructions),
AllowCancellation = true
};
```
These resources aren't in the correct places and causes the exception to occur.
Comments: Verified this on 20926.01. Fixed. Closing.