Skip to content

Commit

Permalink
GitTools#3234 - renamed Cache -> Caching
Browse files Browse the repository at this point in the history
  • Loading branch information
arturcic committed Feb 18, 2023
1 parent f7b727d commit 85b6e8e
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
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

0 comments on commit 85b6e8e

Please sign in to comment.