You are still using NAnt to drive the build, but msbuild is actually
compiling the .Net project.  

I see that NAntContrib [1] has an <msbuild> task [2] that you would use
instead of the <solution> task or the <exec> task.
 
So, after installing NAntContrib, you could do:
 
<?xml version="1.0" encoding="utf-8" ?> 
<project name="OMEGA" default="Run">

 <target name="Transport" description="this is builds the solutions
file"> 
    <msbuild target="Release" 
       project="C:\Program
Files\OMEGA\siebel\src\Transport\Transport.sln" 
       failonerror="true">
       <property name="Configuration" value="Release" />
    </msbuild>
 </target> 

 <target name="Run" description="Runs the entire process of pushing
develop to qa."> 
  <call target="Transport" />  
 </target>
</project>

 
[1] http://nantcontrib.sourceforge.net/
[2]
http://nantcontrib.sourceforge.net/release/latest/help/tasks/msbuild.htm
l
 
 
 
 
 
________________________________

From: Kumar .S [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, October 17, 2006 1:52 PM
To: Arnette, Bill
Subject: Re: [NAnt-users] "Error loading GUID..." when using <solution>
task forVS2005



        Hello Arnette,
         
                            So, according to NANT wont support for VS
2005. Is that true. U said its not going to support. In what way its not
supporting. We wont be able to compile. VS 2005 .net applications. 
         
        Regards,
        Kumar


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to