vote up 0 vote down star

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? :(

flag

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

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.