Пример #1
0
 private static bool IsNotSuccess()
 {
     VersionControl version = new VersionControl();
     string fileName = string.Format("{0}-{1}.zip", GetSolutionName(), version.GetCurrentValue);
     string newFileReleasePath = Path.Combine(ConfiguracoesIC.ReleasePath, fileName);
     return !File.Exists(newFileReleasePath);
 }
Пример #2
0
 private static string GetVersion()
 {
     VersionControl version = new VersionControl();
     return version.GetValue;
 }
Пример #3
0
 private static void RevertVersionValueGenerated()
 {
     VersionControl version = new VersionControl();
     version.DecreaseVersionValue();
 }
Пример #4
0
        private static string GetVersion()
        {
            VersionControl version = new VersionControl();

            return(version.GetValue);
        }
Пример #5
0
        private static void RevertVersionValueGenerated()
        {
            VersionControl version = new VersionControl();

            version.DecreaseVersionValue();
        }