Skip to content

Commit de9f2cf

Browse files
committed
move git classes under GitVersion.Git namespace
1 parent ec248ba commit de9f2cf

File tree

109 files changed

+298
-230
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

109 files changed

+298
-230
lines changed

new-cli/GitVersion.Calculation/CalculateCommand.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using GitVersion.Extensions;
2+
using GitVersion.Git;
23
using GitVersion.Infrastructure;
34

45
namespace GitVersion.Commands;

new-cli/GitVersion.Cli/Program.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
using GitVersion;
22
using GitVersion.Extensions;
33
using GitVersion.Generated;
4+
using GitVersion.Git;
45
using GitVersion.Infrastructure;
56

67
var modules = new IGitVersionModule[]

new-cli/GitVersion.Core.Libgit2Sharp/Git/GitRepository.extended.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace GitVersion;
1+
namespace GitVersion.Git;
22

33
internal sealed partial class GitRepository : IGitRepository
44
{

new-cli/GitVersion.Core.Libgit2Sharp/LibGit2SharpCoreModule.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using GitVersion.Infrastructure;
22

3-
namespace GitVersion;
3+
namespace GitVersion.Git;
44

55
public class LibGit2SharpCoreModule : IGitVersionModule
66
{

new-cli/GitVersion.Core.Tester/GitVersionApp.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
using GitVersion.Git;
12
using GitVersion.Infrastructure;
23

34
namespace GitVersion;

new-cli/GitVersion.Core.Tester/Program.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using GitVersion;
22
using GitVersion.Extensions;
3+
using GitVersion.Git;
34
using GitVersion.Infrastructure;
45

56
var assemblies = new IGitVersionModule[]

src/GitVersion.App.Tests/PullRequestInBuildAgentTest.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
using GitVersion.Agents;
22
using GitVersion.Core.Tests.Helpers;
33
using GitVersion.Extensions;
4+
using GitVersion.Git;
45
using GitVersion.Helpers;
56
using GitVersion.Output;
67
using LibGit2Sharp;

src/GitVersion.App/ArgumentParserExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System.Text.RegularExpressions;
1+
using System.Text.RegularExpressions;
22
using GitVersion.Helpers;
33

44
namespace GitVersion;

src/GitVersion.App/Arguments.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
using GitVersion.Git;
12
using GitVersion.Logging;
23

34
namespace GitVersion;

src/GitVersion.App/GitVersionExecutor.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using GitVersion.Configuration;
22
using GitVersion.Extensions;
3+
using GitVersion.Git;
34
using GitVersion.Helpers;
45
using GitVersion.Logging;
56

0 commit comments

Comments
 (0)