Skip to content

Commit 4c29fd6

Browse files
committed
Summary line also needs to appear on non-quiet mode
1 parent c6abf5c commit 4c29fd6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

CopyDeployer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ private byte[] HashFile(string file)
107107

108108
private void Summary(string format, params object[] parameters)
109109
{
110-
WriteLine(_options.Summary, format, parameters);
110+
WriteLine(_options.Summary || !_options.Quiet, format, parameters);
111111
}
112112

113113
private void Quiet(string format, params object[] parameters)

Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@
3333
[assembly: AssemblyTrademark("")]
3434
[assembly: AssemblyCulture("")]
3535
[assembly: ComVisible(false)]
36-
[assembly: AssemblyVersion("1.1.0.0")]
37-
[assembly: AssemblyFileVersion("1.1.0.0")]
38-
[assembly: AssemblyInformationalVersion("1.1.0")]
36+
[assembly: AssemblyVersion("1.1.1")]
37+
[assembly: AssemblyFileVersion("1.1.1")]
38+
[assembly: AssemblyInformationalVersion("1.1.1")]
3939
[assembly: Author("Rafael Teixeira")]
4040
[assembly: Author("Managed Commons Team")]
4141
[assembly: UsageComplement("<path of directory to deploy into>")]

0 commit comments

Comments
 (0)