Skip to content

Commit a927ce8

Browse files
author
tajbender
committed
Do Refactoring: Change version number to "0.1.0", add "[debug build]" to Window Title (if so)
1 parent 1c4cbb5 commit a927ce8

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

src/electrifier.Core/Forms/MainWindowForm.Designer.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/electrifier.Core/Forms/MainWindowForm.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,12 @@ public partial class MainWindowForm : Form
7373
protected Guid guid = Guid.NewGuid();
7474
public Guid Guid { get { return this.guid; } }
7575

76+
private const string formTitleAppendix = "electrifier"
77+
#if (DEBUG)
78+
+ " [debug build]"
79+
#endif
80+
;
81+
7682
private RibbonButton _cmdBtnApp_OpenNewShellBrowserPanel;
7783
private RibbonButton _cmdBtnApp_Close;
7884
private RibbonTab _cmdTabHome;

src/electrifier/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@
2424
// General Information about an assembly is controlled through the following
2525
// set of attributes. Change these attribute values to modify the information
2626
// associated with an assembly.
27-
[assembly: AssemblyTitle("electrifier")]
27+
[assembly: AssemblyTitle("electrifier.exe")]
2828
[assembly: Guid("D68BA01B-276A-4B43-86AC-A88DDF09A50C")]
2929
[assembly: ComVisible(false)]

src/electrifier/CommonAssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,5 @@
4343
// You can specify all the values or you can default the Build and Revision Numbers
4444
// by using the '*' as shown below:
4545
// [assembly: AssemblyVersion("1.0.*")]
46-
[assembly: AssemblyVersion("0.1.17.8")]
47-
[assembly: AssemblyFileVersion("0.1.17.8")]
46+
[assembly: AssemblyVersion("0.1.0")]
47+
//[assembly: AssemblyFileVersion("0.1.0")]

0 commit comments

Comments
 (0)