You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

README 900 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. dotnet sandbox README
  2. =====================
  3. Author:
  4. -------
  5. Stefan Bodewig, but feel free to go ahead and modify to your liking.
  6. Goal:
  7. -----
  8. Provide a simple infrastructure to execute .NET applications from
  9. within Ant for different VMs so that the user doesn't have to change
  10. the build file when she wants to run Mono on Linux and Microsoft's VM
  11. on Windows.
  12. This sounds far more ambitioned than it actually is.
  13. Short term goals are:
  14. * A <dotnetexec> task that can be used as
  15. <dotnetexec executable="ExampleCsc.exe"/>
  16. without testing for the environment (see the dotnet.xml build file
  17. for Ant's tests as an example for what may become simpler with
  18. this).
  19. * A <nant> task.
  20. * A <msbuild> task - if only for the fun of having it.
  21. * A <wix> task.
  22. Mid term goals:
  23. * A <nunit> task.
  24. Those tasks should end up in an antlib of their own in order to be
  25. distributable independent of Ant.