Browse Source

Fixed SD2-1256 - Saving a WiX project after changing its project options encodes characters in the .wixproj file. The WiX project options panels now set the TreatPropertyValueAsLiteral property to false on the ConfigurationGuiBindings.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/2.1@2230 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Matt Ward 19 years ago
parent
commit
d9d07dae9d
  1. 2
      src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/CompilerParametersPanel.cs
  2. 1
      src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/SemicolonSeparatedNameValueListBinding.cs

2
src/AddIns/BackendBindings/WixBinding/Project/Src/Gui/CompilerParametersPanel.cs

@ -34,9 +34,11 @@ namespace ICSharpCode.WixBinding @@ -34,9 +34,11 @@ namespace ICSharpCode.WixBinding
ConnectBrowseFolder("intermediateOutputPathBrowseButton", "intermediateOutputPathTextBox", "${res:Dialog.Options.PrjOptions.Configuration.FolderBrowserDescription}");
b = helper.BindString("wixToolPathTextBox", "WixToolPath");
b.TreatPropertyValueAsLiteral = false;
ConnectBrowseFolder("wixToolPathBrowseButton", "wixToolPathTextBox", String.Empty);
b = helper.BindString("wixMSBuildExtensionsPathTextBox", "WixMSBuildExtensionsPath");
b.TreatPropertyValueAsLiteral = false;
ConnectBrowseFolder("wixMSBuildExtensionsPathBrowseButton", "wixMSBuildExtensionsPathTextBox", String.Empty);
// Add the extension picker in manually since the anchoring does not

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

@ -22,6 +22,7 @@ namespace ICSharpCode.WixBinding @@ -22,6 +22,7 @@ namespace ICSharpCode.WixBinding
public SemicolonSeparatedNameValueListBinding(NameValueListEditor editor)
{
this.editor = editor;
TreatPropertyValueAsLiteral = false;
}
public override void Load()

Loading…
Cancel
Save