protected override void OnFileAdd(SvnDeltaFileAddEventArgs e)
        {
            base.OnFileAdd(e);
            _inAdd = true;

            if (e.CopyFromPath != null)
            {
                // Ok, here we miss the information to fix our copy

                // Luckily in our testcase we can ignore this file as it never changes later
            }
        }
Example #2
0
        protected override void OnFileAdd(SvnDeltaFileAddEventArgs e)
        {
            base.OnFileAdd(e);
            _inAdd = true;

            if (e.CopyFromPath != null)
            {
                // Ok, here we miss the information to fix our copy

                // Luckily in our testcase we can ignore this file as it never changes later
            }
        }