The title pretty much says it all...

this code does not write anything to the console cause the collection is empty.

Project p = new Project(engine);
p.AddNewImport(@"C:\mytarget.targets","");
foreach(Import imp in p.Imports)
    Console.WriteLine(p.ProjectPath);

But!, if I debug the code the collections get the imports, I guess it has to do with timming? :(

link|improve this question

I kinda solved it with this: p.Load(p.Xml); ugly! – sebastian Jul 31 '09 at 18:14
feedback

1 Answer

up vote 0 down vote accepted

You have to call p.Load(YOUR_REQUIRED_PARAMETER) and then you can add further imports.

Cheers Orlando

link|improve this answer
I lost this project so I cannot mark your post as answer until I try it... or you get many +1... sorry – sebastian Apr 19 '10 at 13:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.