public void RemoveItem(SvnItem item, uint id)
            {
                int found;

                VsProject.RemoveItem(0, id, out found);
                _map.Clear(); // Flush the cache to make sure ids stay valid
            }
Example #2
0
            public void RemoveItem(SvnItem item, uint id)
            {
                ThreadHelper.ThrowIfNotOnUIThread();

                int found;

                VsProject.RemoveItem(0, id, out found);
                _map.Clear(); // Flush the cache to make sure ids stay valid
            }