makefile.build 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <!--Minimalistic buildfile -->
  2. <project name="System.Web.Phantom" 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.Web.Phantom.csproj"/>
  12. <property name="override_config" value="${ghconfiguration}"/>
  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}\System.Web.Phantom.dll"/>
  16. </fileset>
  17. <!--END MANDATORY SECTION-->
  18. <!--OPTIONAL SECTION-->
  19. <!--
  20. <target name="postbuild">
  21. </target>
  22. -->
  23. <!--
  24. <property name="cvnsrc" value="svn://svn.myrealbox.com/source/trunk/mcs/<cvn_folder>"/>
  25. <target name="prebuild">
  26. Put something there if you need
  27. </target>
  28. -->
  29. <!--END OPTIONAL SECTION-->
  30. <!--Allways at the end-->
  31. <include buildfile="${ghroot}\vsbuild\framework.xml" />
  32. </project>