mirror of
https://github.com/ncblakely/GiantsTools
synced 2024-10-31 21:05:38 +01:00
16 lines
453 B
C#
16 lines
453 B
C#
namespace Giants.Services
|
|
{
|
|
using Giants.DataContract.V1;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
public interface IVersioningService
|
|
{
|
|
Task<IEnumerable<string>> GetBranches(string appName);
|
|
|
|
Task<VersionInfo> GetVersionInfo(string appName, string branchName);
|
|
|
|
Task UpdateVersionInfo(string appName, AppVersion appVersion, string fileName, string branchName, bool force);
|
|
}
|
|
}
|