|
Revision 288, 0.8 kB
(checked in by tyler, 7 months ago)
|
|
Minor update for git testing
|
| Line | |
|---|
| 1 | <?xml version="1.0"?> |
|---|
| 2 | |
|---|
| 3 | <project name="Twitterbot" default="bot" basedir="."> |
|---|
| 4 | <description> |
|---|
| 5 | NAnt build file for the C# Twitterbot |
|---|
| 6 | </description> |
|---|
| 7 | |
|---|
| 8 | <property name="debug" value="true" overwrite="false" /> |
|---|
| 9 | <property name="executable" value="Twitterbot.exe"/> |
|---|
| 10 | <tstamp property="build.date" pattern="yyyyMMdd" verbose="true" /> |
|---|
| 11 | |
|---|
| 12 | <target name="bot" description="Default build target"> |
|---|
| 13 | <csc target="exe" output="${executable}"> |
|---|
| 14 | <references> |
|---|
| 15 | <include name="RSS.NET.dll"/> |
|---|
| 16 | <include name="System.Web.dll"/> |
|---|
| 17 | <include name="System.Web.Extensions.dll"/> |
|---|
| 18 | </references> |
|---|
| 19 | |
|---|
| 20 | <sources> |
|---|
| 21 | <include name="Twitterbot.cs"/> |
|---|
| 22 | </sources> |
|---|
| 23 | </csc> |
|---|
| 24 | </target> |
|---|
| 25 | |
|---|
| 26 | <target name="clean" description="Clean the Twitterbot"> |
|---|
| 27 | <delete file="${executable}" failonerror="true"/> |
|---|
| 28 | </target> |
|---|
| 29 | </project> |
|---|