Browse Source

Fix output name in Application settings project panel.

The output assembly name was always has the extension of .exe when
the project options is opened.
pull/39/merge
Matt Ward 13 years ago
parent
commit
ef5d2930e9
  1. 1
      src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/ApplicationSettings.xaml.cs

1
src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/ApplicationSettings.xaml.cs

@ -137,6 +137,7 @@ namespace ICSharpCode.SharpDevelop.Gui.OptionPanels @@ -137,6 +137,7 @@ namespace ICSharpCode.SharpDevelop.Gui.OptionPanels
} else {
applicationManifestComboBox.Text = this.ApplicationManifest.Value;
}
this.projectInformation.OutputTypeName = AssemblyName.Value + CompilableProject.GetExtension(OutputType.Value);
IsDirty = false;
}

Loading…
Cancel
Save