12 lines
182 B
C#
12 lines
182 B
C#
using System;
|
|
|
|
namespace Sep.Git.Tfs.Core
|
|
{
|
|
public interface IGitTfsVersionProvider
|
|
{
|
|
string GetVersionString();
|
|
|
|
string GetPathToGitTfsExecutable();
|
|
}
|
|
}
|