Exemple #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);
 }
Exemple #2
0
 private static string GetVersion()
 {
     VersionControl version = new VersionControl();
     return version.GetValue;
 }
Exemple #3
0
 private static void RevertVersionValueGenerated()
 {
     VersionControl version = new VersionControl();
     version.DecreaseVersionValue();
 }
        private static string GetVersion()
        {
            VersionControl version = new VersionControl();

            return(version.GetValue);
        }
        private static void RevertVersionValueGenerated()
        {
            VersionControl version = new VersionControl();

            version.DecreaseVersionValue();
        }