Sunday 20 October 2013

Sample example for Nant Build file

Sample Example


 <?xml version="1.0"?>
    <project name="Hello World" default="build" basedir=".">
        <description>The Hello World of build files.</description>
        <property name="debug" value="true" overwrite="false" />
        <target name="clean" description="remove all generated files">
            <delete file="HelloWorld.exe" failonerror="false" />
            <delete file="HelloWorld.pdb" failonerror="false" />
        </target>
        <target name="build" description="compiles the source code">
            <csc target="exe" output="HelloWorld.exe" debug="${debug}">
                <sources>
                    <includes name="HelloWorld.cs" />
                </sources>
            </csc>
        </target>
    </project>


2 comments:

  1. Hi Venkat

    Could you please help me in detail what is the SVN conflicts and SVN merge

    ReplyDelete
  2. I need example for Nant Build file and I found it here very useful and now I feeling helpful thank you.Like shaik I also looking for detail on SVN conflicts and SVN merge.It help me in my Build And Release Engineer online Training in Hyderabad.

    ReplyDelete

Tricks and Tips