~cafg10/bazaarsharp/trunk

« back to all changes in this revision

Viewing changes to BzrSharp/Commands/MultipleFile.cs

  • Committer: Carlos Flores
  • Date: 2010-06-06 19:07:30 UTC
  • Revision ID: cafg10@gmail.com-20100606190730-bovboh9wk4tsxhb8
Changes to move and add commands to correctly handle the new URI arguments system

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
// You should have received a copy of the GNU Lesser General Public License
15
15
// along with this program. If not, see <http://www.gnu.org/licenses/>.
16
16
 
 
17
using System;
17
18
using System.Collections.Generic;
18
19
using System.IO;
19
20
using System.Linq;
20
 
using System;
21
21
 
22
22
namespace Bazaar.Commands
23
23
{
80
80
 
81
81
        public MultipleFile(Uri directory, IEnumerable<Uri> files)
82
82
        {
83
 
            // TODO: Complete member initialization
84
83
            this.directory = directory;
85
84
            this.files = files.ToList();
86
85
        }
90
89
        {
91
90
            get
92
91
            {
93
 
                return base.Arguments.Concat(from f in files select f.MakeRelativeUri(workingDirectory).ToString()).ToList();
 
92
                return base.Arguments.Concat(from f in files select f.LocalPath).ToList();
94
93
            }
95
94
        }
96
95
    }