oops, moving README and sam-sharp.build out of the source directory

This commit is contained in:
smeghead
2005-01-24 23:43:37 +00:00
committed by zzz
parent de2c975ac2
commit 5018e56103
2 changed files with 1 additions and 1 deletions

View File

@ -0,0 +1,19 @@
<?xml version="1.0"?>
<project basedir="." default="bin" name="sam-sharp">
<target name="bin" description="Builds assemblies from source">
<mkdir dir="bin" />
<csc target="dll" output="bin/sam-sharp.dll">
<sources>
<include name="src/**/*.cs" />
</sources>
</csc>
<echo message="Build complete." />
</target>
<target name="clean" description="Deletes all built assemblies">
<delete dir="bin" failonerror="false" />
<echo message="Clean complete." />
</target>
</project>