Skip to content

Commit 08f0366

Browse files
committed
cleanup
1 parent 6a6687c commit 08f0366

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

new-cli/GitVersion.Cli/Program.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
var modules = new IGitVersionModule[]
77
{
88
new CoreModule(),
9-
new LibGit2SharpCoreModule()
9+
new LibGit2SharpCoreModule(),
10+
new CommandsImplModule()
1011
};
1112

1213
var cts = new CancellationTokenSource();
@@ -24,7 +25,6 @@ static IContainer RegisterModules(IEnumerable<IGitVersionModule> gitVersionModul
2425
{
2526
var serviceProvider = new ContainerRegistrar()
2627
.RegisterModules(gitVersionModules)
27-
.RegisterModule(new CommandsImplModule())
2828
.AddSingleton<GitVersionApp>()
2929
.AddLogging()
3030
.Build();

src/GitVersion.Configuration/GitVersion.Configuration.csproj

-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
<ItemGroup>
3-
<None Remove="SupportedWorkflows\TrunkBased\v1.yml" />
4-
</ItemGroup>
52
<ItemGroup>
63
<ProjectReference Include="..\GitVersion.Core\GitVersion.Core.csproj" />
74
</ItemGroup>

0 commit comments

Comments
 (0)