Welcome to mirror list, hosted at ThFree Co, Russian Federation.

makefile.build « System.XML « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d175219876dad8ab253828b5c11041379f028b38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!--Minimalistic buildfile -->
<project name="Mainsoft.Web.PortalControls20" default="all">
<property name="ghroot"  value="${project::get-base-directory()}\..\..\..\.."/>
  <!--Allways at the beginning-->
  <include buildfile="${ghroot}\vsbuild\properties.xml" />

  <!--MANDATORY SECTION-->

  <!--Could be GH ANT .NET-->
  <property name="projecttype" value=".NET2005"/>
  <!--Could be RUNTIME TOOLS ... -->
  <property name="rules" value="RUNTIME"/>

  <property name="msbuild_file" value="System.XML20.csproj"/>
  <property name="override_config" value="${ghconfiguration_ver}${configappend}"/>
  
  <!--Fileset describing project output files. Uset by copy/delete rules in framework-->
  <fileset id="output" basedir="${project::get-base-directory()}\bin" failonempty="true">
	<include name="${ghconfiguration_ver}${configappend}\System.Xml.jar"/>
	<include name="${ghconfiguration_ver}${configappend}\System.Xml.dll"/>
  </fileset>

  <!--END MANDATORY SECTION-->

 <!--OPTIONAL SECTION-->
<!--
  <target name="postbuild">
          
  </target>
-->
  <!--
  <property name="cvnsrc" value="svn://svn.myrealbox.com/source/trunk/mcs/<cvn_folder>"/>
  <target name="prebuild">
  Put something there if you need
  </target>
  -->
  <!--END OPTIONAL SECTION-->


  <!--Allways at the end-->
  <include buildfile="${ghroot}\vsbuild\framework.xml" />
</project>