File tree Expand file tree Collapse file tree 3 files changed +22
-3
lines changed
GitVersion.LibGit2Sharp/Git
GitVersion.MsBuild.Tests/Mocks Expand file tree Collapse file tree 3 files changed +22
-3
lines changed Original file line number Diff line number Diff line change 11namespace GitVersion . Logging ;
22
3+ /// <summary>
4+ /// Represents verbosity.
5+ /// </summary>
36public 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}
Original file line number Diff line number Diff line change 1- using System . Collections ;
2-
31namespace GitVersion ;
42
53internal sealed class BranchCollection : IBranchCollection
Original file line number Diff line number Diff line change 1- using System . Collections ;
21using System . Collections . Concurrent ;
32using GitVersion . MsBuild . Tests . Helpers ;
43using Microsoft . Build . Framework ;
You can’t perform that action at this time.
0 commit comments