tags:

views:

85

answers:

1

I have msbuild proj file which should build solution created on Visual Studio 2005 and containing both C++ and C# project If I need to build the solution with msbuild which comes with .NET 3.5, what should be added into proj file ?

Thanks in advance

A: 

If you are trying to build a solution file which contains C++ projects then you should use devenv.exe to build it. To do this you can use the Exec task.

Sayed Ibrahim Hashimi