Skip to content

Commit 41d4f52

Browse files
committed
moved Git folder to the root of the project
1 parent ecdd0a0 commit 41d4f52

14 files changed

+4
-2
lines changed

src/GitVersion.LibGit2Sharp/Git/Tag.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ internal sealed class Tag : ITag
1616
public bool Equals(ITag other) => equalityHelper.Equals(this, other);
1717
public override int GetHashCode() => equalityHelper.GetHashCode(this);
1818
public string CanonicalName => innerTag.CanonicalName;
19-
public string TargetSha => innerTag.Target.Sha;
2019
public string FriendlyName => innerTag.FriendlyName;
20+
public string TargetSha => innerTag.Target.Sha;
2121

2222
public ICommit? PeeledTargetCommit()
2323
{

src/GitVersionCore/Core/Abstractions/Git/ITag.cs renamed to src/GitVersionCore/Git/ITag.cs

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1+
using System;
2+
13
namespace GitVersion
24
{
3-
public interface ITag
5+
public interface ITag: IEquatable<ITag>, IComparable<ITag>
46
{
57
string TargetSha { get; }
68
string FriendlyName { get; }

0 commit comments

Comments
 (0)