Skip to content

Commit d94f35c

Browse files
committed
added descriptions to the Verbosity enum
1 parent ab4ddaf commit d94f35c

File tree

3 files changed

+22
-3
lines changed

3 files changed

+22
-3
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,32 @@
11
namespace GitVersion.Logging;
22

3+
/// <summary>
4+
/// Represents verbosity.
5+
/// </summary>
36
public enum Verbosity
47
{
8+
/// <summary>
9+
/// Quiet verbosity.
10+
/// </summary>
511
Quiet = 0,
12+
13+
/// <summary>
14+
/// Minimal verbosity.
15+
/// </summary>
616
Minimal = 1,
17+
18+
/// <summary>
19+
/// Normal verbosity.
20+
/// </summary>
721
Normal = 2,
22+
23+
/// <summary>
24+
/// Verbose verbosity.
25+
/// </summary>
826
Verbose = 3,
27+
28+
/// <summary>
29+
/// Diagnostic verbosity.
30+
/// </summary>
931
Diagnostic = 4
1032
}

src/GitVersion.LibGit2Sharp/Git/BranchCollection.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
using System.Collections;
2-
31
namespace GitVersion;
42

53
internal sealed class BranchCollection : IBranchCollection

src/GitVersion.MsBuild.Tests/Mocks/MockEngine.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
using System.Collections;
21
using System.Collections.Concurrent;
32
using GitVersion.MsBuild.Tests.Helpers;
43
using Microsoft.Build.Framework;

0 commit comments

Comments
 (0)