Skip to content
This repository was archived by the owner on Jan 1, 2021. It is now read-only.

Commit 02fb354

Browse files
committed
cleanup
1 parent ebfc2e7 commit 02fb354

File tree

8 files changed

+17
-17
lines changed

8 files changed

+17
-17
lines changed

src/GitVersion.Calculation/GitVersion.Calculation.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<ProjectReference Include="..\GitVersion.Common.Command\GitVersion.Common.Command.csproj" />
9+
<ProjectReference Include="..\GitVersion.Common.Command\GitVersion.Common.Command.csproj"/>
1010
</ItemGroup>
1111

1212
</Project>

src/GitVersion.Cli/GitVersion.Cli.csproj

+10-10
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,19 @@
1313
</PropertyGroup>
1414

1515
<ItemGroup>
16-
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="5.0.0" />
17-
<PackageReference Include="System.CommandLine" Version="2.0.0-beta1.20574.7" />
18-
19-
<PackageReference Include="Serilog.Extensions.Logging" Version="3.0.2-dev-10281" />
20-
<PackageReference Include="Serilog.Sinks.Console" Version="4.0.0-dev-00839" />
21-
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0-dev-00905" />
16+
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="5.0.0"/>
17+
<PackageReference Include="System.CommandLine" Version="2.0.0-beta1.20574.7"/>
18+
19+
<PackageReference Include="Serilog.Extensions.Logging" Version="3.0.2-dev-10281"/>
20+
<PackageReference Include="Serilog.Sinks.Console" Version="4.0.0-dev-00839"/>
21+
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0-dev-00905"/>
2222
</ItemGroup>
2323

2424
<ItemGroup>
25-
<ProjectReference Include="..\GitVersion.Calculation\GitVersion.Calculation.csproj" />
26-
<ProjectReference Include="..\GitVersion.Configuration\GitVersion.Configuration.csproj" />
27-
<ProjectReference Include="..\GitVersion.Normalization\GitVersion.Normalization.csproj" />
28-
<ProjectReference Include="..\GitVersion.Output\GitVersion.Output.csproj" />
25+
<ProjectReference Include="..\GitVersion.Calculation\GitVersion.Calculation.csproj"/>
26+
<ProjectReference Include="..\GitVersion.Configuration\GitVersion.Configuration.csproj"/>
27+
<ProjectReference Include="..\GitVersion.Normalization\GitVersion.Normalization.csproj"/>
28+
<ProjectReference Include="..\GitVersion.Output\GitVersion.Output.csproj"/>
2929
</ItemGroup>
3030

3131
</Project>

src/GitVersion.Cli/Program.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ private static async Task<int> Main(string[] args)
1717
// TODO: load the list of assemblies from the app working directory, later we might load from nuget
1818
var assemblies = new[]
1919
{
20-
typeof(CoreModule).Assembly,
20+
typeof(CommonModule).Assembly,
2121
typeof(NormalizeModule).Assembly,
2222
typeof(CalculateModule).Assembly,
2323
typeof(ConfigModule).Assembly,

src/GitVersion.Common.Command/GitVersion.Common.Command.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<ProjectReference Include="..\GitVersion.Common\GitVersion.Common.csproj" />
9+
<ProjectReference Include="..\GitVersion.Common\GitVersion.Common.csproj"/>
1010
</ItemGroup>
1111

1212
</Project>

src/GitVersion.Common/CoreModule.cs renamed to src/GitVersion.Common/CommonModule.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace GitVersion
44
{
5-
public class CoreModule : IGitVersionModule
5+
public class CommonModule : IGitVersionModule
66
{
77
public void RegisterTypes(IContainerRegistrar services)
88
{

src/GitVersion.Configuration/GitVersion.Configuration.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<ProjectReference Include="..\GitVersion.Common.Command\GitVersion.Common.Command.csproj" />
9+
<ProjectReference Include="..\GitVersion.Common.Command\GitVersion.Common.Command.csproj"/>
1010
</ItemGroup>
1111

1212
</Project>

src/GitVersion.Normalization/GitVersion.Normalization.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<ProjectReference Include="..\GitVersion.Common.Command\GitVersion.Common.Command.csproj" />
9+
<ProjectReference Include="..\GitVersion.Common.Command\GitVersion.Common.Command.csproj"/>
1010
</ItemGroup>
1111

1212
</Project>

src/GitVersion.Output/GitVersion.Output.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<ProjectReference Include="..\GitVersion.Common.Command\GitVersion.Common.Command.csproj" />
9+
<ProjectReference Include="..\GitVersion.Common.Command\GitVersion.Common.Command.csproj"/>
1010
</ItemGroup>
1111

1212
</Project>

0 commit comments

Comments
 (0)