1 <!--Minimalistic buildfile -->
\r
2 <project name="Accessibility" default="all">
\r
3 <property name="ghroot" value="${project::get-base-directory()}\..\..\..\.."/>
\r
4 <!--Allways at the beginning-->
\r
5 <include buildfile="${ghroot}\vsbuild\properties.xml" />
\r
7 <!--MANDATORY SECTION-->
\r
9 <!--Could be GH ANT .NET-->
\r
10 <property name="projecttype" value=".NET2005"/>
\r
11 <!--Could be RUNTIME TOOLS ... -->
\r
12 <property name="rules" value="RUNTIME"/>
\r
14 <property name="msbuild_file" value="Accessibility.csproj"/>
\r
15 <property name="override_config" value="${ghconfiguration_ver}"/>
\r
17 <!--Fileset describing project output files. Uset by copy/delete rules in framework-->
\r
18 <fileset id="output" basedir="${project::get-base-directory()}\bin" failonempty="true">
\r
19 <include name="${ghconfiguration_ver}\Accessibility.jar"/>
\r
20 <include name="${ghconfiguration_ver}\Accessibility.dll"/>
\r
23 <!--END MANDATORY SECTION-->
\r
25 <!--OPTIONAL SECTION-->
\r
27 <target name="postbuild">
\r
32 <property name="cvnsrc" value="svn://svn.myrealbox.com/source/trunk/mcs/<cvn_folder>"/>
\r
33 <target name="prebuild">
\r
34 Put something there if you need
\r
37 <!--END OPTIONAL SECTION-->
\r
40 <!--Allways at the end-->
\r
41 <include buildfile="${ghroot}\vsbuild\framework.xml" />
\r