Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
1k views

How do I use Microsoft.Build.BuildEngine to Build a Silverlight project?

I am using the Microsoft.Build.BuildEngine to build a number of projects. Projects that do not use Silverlight are building correctly while projects that do use Silverlight are not building. All of ...
0
votes
1answer
100 views

Create project folder Buildengine

When I am creating one project file by code using the BuidEngine, Does anybody know.. how to add project folders? how to add one builditem to the created folder? . var project = new Project(); ...
0
votes
2answers
138 views

Set Copy to Output folder by code

I am developing a code generation tool, so the project files(.csprj) are created by code. Is there any way to mark a content file to be copied always to the output directory? ... var project = new ...
0
votes
1answer
68 views

Import added does not appear in the Imports collection (Msbuild Project)

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",""); ...