Skip to content

Commit 7bc4283

Browse files
author
FriedrichWeinmann
committed
Updated version
Also fixed some code docs
1 parent a36986a commit 7bc4283

File tree

6 files changed

+23
-3
lines changed

6 files changed

+23
-3
lines changed

PSModuleDevelopment/PSModuleDevelopment.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
RootModule = 'PSModuleDevelopment.psm1'
55

66
# Version number of this module.
7-
ModuleVersion = '1.4.0.27'
7+
ModuleVersion = '2.0.0.0'
88

99
# ID used to uniquely identify this module
1010
GUID = '37dd5fce-e7b5-4d57-ac37-832055ce49d6'
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

PSModuleDevelopment/bin/PSModuleDevelopment.xml

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

library/PSModuleDevelopment/PSModuleDevelopment/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.0.0.0")]
35+
[assembly: AssemblyVersion("2.0.0.0")]
36+
[assembly: AssemblyFileVersion("2.0.0.0")]

library/PSModuleDevelopment/PSModuleDevelopment/Utility/TextHeader.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,11 +95,19 @@ public int WidthOfText
9595
/// </summary>
9696
public int Padding;
9797

98+
/// <summary>
99+
/// Creates a new header around the specified string
100+
/// </summary>
101+
/// <param name="Text">The string to put in a header</param>
98102
public TextHeader(string Text)
99103
{
100104
this.Text = Text;
101105
}
102106

107+
/// <summary>
108+
/// Converts the header into its string representation
109+
/// </summary>
110+
/// <returns>The header text to use whereever said header is needed.</returns>
103111
public override string ToString()
104112
{
105113
StringBuilder result = new StringBuilder();

0 commit comments

Comments
 (0)