svn path=/trunk/facebook-sharp/; revision=86227
This commit is contained in:
R. Tyler Ballance 2007-09-22 23:59:22 +00:00
Родитель be4210968d
Коммит 1805f51494
2 изменённых файлов: 34 добавлений и 0 удалений

Просмотреть файл

@ -1,3 +1,7 @@
2007-09-02 R. Tyler Ballance <tyler@monkeypox.org>
* facebook-sharp.build:
Add a basic NAnt build script to get around the autogen mess
2007-07-26 Thomas Van Machelen <thomas.vanmachelen@gmail.com>
* src/Mono.Facebook/Util.cs:
keep the serializers in a dictionary so we don't have to

30
facebook-sharp.build Normal file
Просмотреть файл

@ -0,0 +1,30 @@
<?xml version="1.0"?>
<project name="facebook-sharp" default="library" basedir=".">
<description>
NAnt build script for facebook-sharp (aka Mono.Facebook)
</description>
<property name="debug" value="true" overwrite="false" />
<property name="project.name" value="facebook-sharp"/>
<property name="project.version" value="1.0.0"/>
<property name="library" value="Mono.Facebook.dll"/>
<tstamp property="build.date" pattern="yyyyMMdd" verbose="true" />
<!-- These are being definde for posterity's sake, as they may change in the future -->
<property name="bin_dir" value="bin"/>
<property name="src_dir" value="src"/>
<target name="library" description="Basic facebook-sharp build task">
<echo message="Building ${project.name}-${project.version}"/>
<csc target="library" output="${bin_dir}/${library}">
<sources>
<include name="${src_dir}/**.cs"/>
</sources>
<references>
</references>
</csc>
</target>
</project>