Browse Source

StyleCop's tools options panel now handles spaces in the settings file path.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/3.0@3736 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Matt Ward 17 years ago
parent
commit
a3cabc08a1
  1. 2
      src/AddIns/Misc/SourceAnalysis/Src/AnalysisIdeOptionsPanel.cs

2
src/AddIns/Misc/SourceAnalysis/Src/AnalysisIdeOptionsPanel.cs

@ -62,7 +62,7 @@ namespace MattEverson.SourceAnalysis @@ -62,7 +62,7 @@ namespace MattEverson.SourceAnalysis
void ModifyStyleCopSettingsClick(object sender, EventArgs e)
{
var executable = Path.Combine(StyleCopWrapper.FindStyleCopPath(), "StyleCopSettingsEditor.exe");
var parameters = StyleCopWrapper.GetMasterSettingsFile();
var parameters = "\"" + StyleCopWrapper.GetMasterSettingsFile() + "\"";
if (!File.Exists(executable)) {
LoggingService.Debug("StyleCopSettingsEditor.exe: " + executable);

Loading…
Cancel
Save