vardars / ci-factory

Automatically exported from code.google.com/p/ci-factory
1 stars 2 forks source link

VSTSMonitor.OnNotifyChangeSetId uses a case sensitive check for comparing SCC event to current project #44

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
In VSTSMonitor, the highlighted code (--->) fails if case of project and 
SCC path differ on case.

        private void OnNotifyChangeSetId(int id, string eventXml)
        {
---->            if (eventXml.Contains(this.ProjectPath))
            {
                Changeset Set = this.SourceControl.GetChangeset(id);
                this.ChangesetQueue.Enqueue(Set);
            }
        }

Original issue reported on code.google.com by hound...@gmail.com on 13 Apr 2007 at 11:55

GoogleCodeExporter commented 9 years ago
this has been submitted with a change for case insensitivity

Original comment by hound...@gmail.com on 13 Apr 2007 at 6:21

GoogleCodeExporter commented 9 years ago
Fixed in 0.8.

Original comment by jay.flowers@gmail.com on 7 Jul 2007 at 3:10