Пример #1
0
        public static ChangesetQueue GetChangesetQueue(string projectPath, VersionControlServer sourceControl)
        {
            if (Queues.ContainsKey(projectPath))
                return Queues[projectPath];

            ChangesetQueue Queue = new ChangesetQueue(projectPath, sourceControl);
            Queues.Add(projectPath, Queue);
            return Queue;
        }
Пример #2
0
        public static ChangesetQueue GetChangesetQueue(string projectPath, VersionControlServer sourceControl)
        {
            if (Queues.ContainsKey(projectPath))
            {
                return(Queues[projectPath]);
            }

            ChangesetQueue Queue = new ChangesetQueue(projectPath, sourceControl);

            Queues.Add(projectPath, Queue);
            return(Queue);
        }