Add NAnt build script
svn path=/trunk/facebook-sharp/; revision=86227
This commit is contained in:
Родитель
be4210968d
Коммит
1805f51494
|
@ -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
|
||||
|
|
|
@ -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>
|
||||
|
Загрузка…
Ссылка в новой задаче