0.1
|
First creation
|
Most of the code here was copied verbatim from v0.3 of
Steve Loughran's CSharp optional task. |
DotnetDefine.java | Class | definitions can be conditional. |
DotnetResource.java | Class | Used by
DotnetCompile to name resources. |
Ilasm.java | Class | Assembles .NET Intermediate Language files.
ilasm.exe must be on the execute path, unless another executable
or the full path to that executable is specified in the executable
parameter
All parameters are optional: <il/> should suffice to produce a debug
build of all *.il files. |
Ildasm.java | Class | Task to take a .NET or Mono -generated managed executable and turn it
into ILASM assembly code. |
ImportTypelib.java | Class | Import a COM type library into the .NET framework.
This task is a wrapper to .NET's tlbimport; it imports a tlb file to a NET assembly
by generating a binary assembly (.dll) that contains all the binding
metadata. |
JSharp.java | Class | Compile J# source down to a managed .NET application.
J# is not Java. |
NetCommand.java | Class | This is a helper class to spawn net commands out. |
VisualBasicCompile.java | Class | This task compiles Visual Basic.NET source into executables or modules.
The task requires vbc.exe on the execute path, unless it or an equivalent
program is specified in the executable parameter
All parameters are optional: <vbc/> should suffice to produce a debug
build of all *.vb files.
The task is a directory based task, so attributes like
includes="**\/*.vb" and
excludes="broken.vb" can be used to control
the files pulled in. |
WsdlToDotnet.java | Class | Converts a WSDL file or URL resource into a .NET language.
Why add a wrapper to the MS WSDL tool?
So that you can verify that your web services, be they written with Axis or
anyone else's SOAP toolkit, work with .NET clients.
This task is dependency aware when using a file as a source and destination;
so if you <get> the file (with usetimestamp="true" ) then
you only rebuild stuff when the WSDL file is changed. |