示例#1
0
        internal static bool ShowDownloadPlasticExeWindow(bool isGluonMode)
        {
            if (IsExeAvailable.ForMode(isGluonMode))
            {
                return(false);
            }

            DownloadPlasticExeWindow.ShowWindow(isGluonMode);
            return(true);
        }
示例#2
0
        internal static bool ShowDownloadPlasticExeWindow(
            RepositorySpec repSpec,
            bool isGluonMode,
            string installCloudFrom,
            string installEnterpriseFrom,
            string cancelInstallFrom)
        {
            if (IsExeAvailable.ForMode(isGluonMode))
            {
                return(false);
            }

            DownloadPlasticExeWindow.ShowWindow(
                repSpec,
                isGluonMode,
                installCloudFrom,
                installEnterpriseFrom,
                cancelInstallFrom);

            return(true);
        }