Skip to content

Commit b1ac796

Browse files
committed
update version, removed autoscalemode
1 parent 2113c9b commit b1ac796

File tree

4 files changed

+9
-13
lines changed

4 files changed

+9
-13
lines changed

appveyor-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 1.8.{build}
1+
version: 1.10.{build}
22
branches:
33
only:
44
- master

build/Build.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ Version Version
7878
patch = AppVeyor.Instance.BuildNumber;
7979
}
8080

81-
return new Version(1, 9, 0, patch);
81+
return new Version(1, 10, 0, patch);
8282
}
8383
}
8484

@@ -341,7 +341,7 @@ protected override void OnBuildInitialized()
341341
});
342342

343343
Target CreateSetup => _ => _
344-
.DependsOn(CopyFilesForSetup)
344+
.DependsOn(CopyFilesForSetup, ChangeVersionNumber)
345345
.Before(Publish)
346346
.OnlyWhenStatic(() => Configuration == "Release")
347347
.Executes(() =>

src/LogExpert/Dialogs/AboutBox.Designer.cs

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/LogExpert/Dialogs/AboutBox.cs

+5-9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using System.Diagnostics;
2-
using System.IO;
1+
using System.IO;
32
using System.Reflection;
43
using System.Windows.Forms;
54

@@ -19,9 +18,6 @@ public AboutBox()
1918
{
2019
InitializeComponent();
2120

22-
AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
23-
AutoScaleMode = AutoScaleMode.Dpi;
24-
2521
_assembly = Assembly.GetExecutingAssembly();
2622

2723
Text = $@"About {AssemblyTitle}";
@@ -52,7 +48,7 @@ public string AssemblyTitle
5248
object[] attributes = _assembly.GetCustomAttributes(typeof(AssemblyTitleAttribute), false);
5349
if (attributes.Length > 0)
5450
{
55-
AssemblyTitleAttribute titleAttribute = (AssemblyTitleAttribute) attributes[0];
51+
AssemblyTitleAttribute titleAttribute = (AssemblyTitleAttribute)attributes[0];
5652
if (titleAttribute.Title != "")
5753
{
5854
return titleAttribute.Title;
@@ -86,7 +82,7 @@ public string AssemblyDescription
8682
{
8783
return string.Empty;
8884
}
89-
return ((AssemblyDescriptionAttribute) attributes[0]).Description;
85+
return ((AssemblyDescriptionAttribute)attributes[0]).Description;
9086
}
9187
}
9288

@@ -99,7 +95,7 @@ public string AssemblyProduct
9995
{
10096
return string.Empty;
10197
}
102-
return ((AssemblyProductAttribute) attributes[0]).Product;
98+
return ((AssemblyProductAttribute)attributes[0]).Product;
10399
}
104100
}
105101

@@ -112,7 +108,7 @@ public string AssemblyCopyright
112108
{
113109
return string.Empty;
114110
}
115-
return ((AssemblyCopyrightAttribute) attributes[0]).Copyright;
111+
return ((AssemblyCopyrightAttribute)attributes[0]).Copyright;
116112
}
117113
}
118114

0 commit comments

Comments
 (0)