Browse Source

The LocalizedStringFile property in a WiX project is no longer escaped when the project is saved after making changes in the Application tab of the project options.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/2.1@2328 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Matt Ward 19 years ago
parent
commit
28690d84ac
  1. 1
      src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/ApplicationSettingsPanel.cs

1
src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/ApplicationSettingsPanel.cs

@ -28,6 +28,7 @@ namespace ICSharpCode.WixBinding @@ -28,6 +28,7 @@ namespace ICSharpCode.WixBinding
ConnectBrowseButton("localizedStringFileBrowseButton", "localizedStringFileTextBox", "${res:ICSharpCode.WixBinding.WixLocalizationFileFilterName} (*.wxl)|*.wxl|${res:SharpDevelop.FileFilter.AllFiles}|*.*");
b = helper.BindString("localizedStringFileTextBox", "LocalizedStringFile");
b.TreatPropertyValueAsLiteral = false;
b.CreateLocationButton("localizedStringFileTextBox");
b = helper.BindEnum<WixOutputType>("outputTypeComboBox", "OutputType");

Loading…
Cancel
Save