Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/GitVersion.Core.Tests/Core/GitVersionExecutorTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using GitVersion.Core.Tests.Helpers;
using GitVersion.Helpers;
using GitVersion.Logging;
using GitVersion.VersionCalculation.Cache;
using GitVersion.VersionCalculation.Caching;
using LibGit2Sharp;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Options;
Expand Down
2 changes: 1 addition & 1 deletion src/GitVersion.Core/Core/GitVersionCalculateTool.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using GitVersion.Logging;
using GitVersion.OutputVariables;
using GitVersion.VersionCalculation;
using GitVersion.VersionCalculation.Cache;
using GitVersion.VersionCalculation.Caching;
using Microsoft.Extensions.Options;

namespace GitVersion;
Expand Down
2 changes: 1 addition & 1 deletion src/GitVersion.Core/GitVersionCoreModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using GitVersion.Extensions;
using GitVersion.Logging;
using GitVersion.VersionCalculation;
using GitVersion.VersionCalculation.Cache;
using GitVersion.VersionCalculation.Caching;
using GitVersion.VersionConverters;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Options;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using GitVersion.OutputVariables;
using YamlDotNet.Serialization;

namespace GitVersion.VersionCalculation.Cache;
namespace GitVersion.VersionCalculation.Caching;

public class GitVersionCache : IGitVersionCache
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using GitVersion.Extensions;

namespace GitVersion.VersionCalculation.Cache;
namespace GitVersion.VersionCalculation.Caching;

public class GitVersionCacheKey
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using GitVersion.Logging;
using Microsoft.Extensions.Options;

namespace GitVersion.VersionCalculation.Cache;
namespace GitVersion.VersionCalculation.Caching;

public class GitVersionCacheKeyFactory : IGitVersionCacheKeyFactory
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using GitVersion.OutputVariables;

namespace GitVersion.VersionCalculation.Cache;
namespace GitVersion.VersionCalculation.Caching;

public interface IGitVersionCache
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using GitVersion.Configuration;

namespace GitVersion.VersionCalculation.Cache;
namespace GitVersion.VersionCalculation.Caching;

public interface IGitVersionCacheKeyFactory
{
Expand Down