I want to create one MSBuild that will execute two others..
How can i import the two others and run each of their targets in order?
UPDATE:
I was able to get this working with the following.
<?xml version="1.0" encoding="utf-8" ?>
<Project xmlns="http://schemas.microsoft.com/developer/MsBuild/2003">
<Target Name="BuildAll">
<Exec Command="C:\Windows\Microsoft.NET\Framework\v3.5\MSBuild.exe MSBuildSettings.xml" />
<Exec Command="C:\Windows\Microsoft.NET\Framework\v3.5\MSBuild.exe PostBuild.xml" />
</Target>
</Project>
Is that what you are looking for??
Process.Start()runs an external executable.