makefile.build 1.4 KB

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