Tagged Questions
MSBuild is a Microsoft build platform typically used in conjunction with Visual Studio. MSBuild version 2.0 is part of .NET Framework 2.0 and works together with Visual Studio 2005. Version 3.5 of MSBuild, which is bundled together with .NET 3.5 (and Visual Studio 2008), allows .NET projects to be built for either 2.0, 3.0 or 3.5 .NET version support (also known as"multi-targeting").
1
vote
2answers
323 views
Programmatically modify Assembly Binding
I have an issue working with Microsoft.Build.BuildEngine which supposed to get fixed modifing my .exe.config file to add the following.
<?xml version ="1.0"?>
<configuration>
...
0
votes
1answer
91 views
Microsoft.Build.Tasks.v3.5 fails at copying dlls from dll.refresh references
I'm constantly getting an error on the TFS2010 build server, due to an inexistent DLL file.
It update this file through dll.refresh from another folder, both folders are mapped in the workspace.
I ...
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","");
...