Hello Matthew,

Your description sounds like what SLiNgshot does, a tool and a task that
are already included in the NAntContrib [1] project.
It converts VS.NET solutions to NAnt build files, as in the following
example:

    <!-- Convert the Solution MySolution.sln to the NAnt build file
MySolution.build ... -->
    <slingshot solution="MySolution.sln" format="nant"
output="MySolution.build"> 
        <parameters>
             <option name="build.basedir" value="..\bin"/>
         </parameters> 
     </slingshot>
    <!-- ... and call the new build file. -->
    <nant buildfile="MySolution.build"/>

However, the tool does not support all project types.  Projects in C++
and C# are supported, including Web Projects.
If your compiler/task does the same as SLiNgshot, you may want to help
enhancing it.

Best regards,

Bernard

[1] http://nantcontrib.sourceforge.net/

> -----Original Message-----
> From: Matthew Mastracci [mailto:matt@;aclaro.com] 
> Sent: Wednesday, November 13, 2002 7:20 PM
> To: [EMAIL PROTECTED]
> Subject: [nant-dev] C# project file compiler - support for 
> .csproj files in NAnt?
> 
> 
> I've written a compiler for C# project files (.csproj) that 
> could easily 
> be set up to support VB.NET (.vbproj) project files as well.  It's 
> fairly complete and supports compilation for Web, winexe, 
> exe's, dll's 
> and all the other project types I've thrown at it.
> 
> I would like to contribute this to the NAnt project, if someone is 
> willing to integrate it, or tell me where the best place is 
> to put it. 
>  It needs some error checking (and maybe some sanity checking 
> :)), but 
> otherwise it is feature-complete for C#.
> 
> Let me know if anyone is interested!
> 
> 
> 
> 
> -------------------------------------------------------
> This sf.net email is sponsored by: Are you worried about 
> your web server security? Click here for a FREE Thawte 
> Apache SSL Guide and answer your Apache SSL security 
> needs: http://www.gothawte.com/rd523.html
> _______________________________________________
> Nant-developers mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/nant-developers
> 


-------------------------------------------------------
This sf.net email is sponsored by: To learn the basics of securing
your web site with SSL, click here to get a FREE TRIAL of a Thawte
Server Certificate: http://www.gothawte.com/rd524.html
_______________________________________________
Nant-developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-developers

Reply via email to