stevel      2003/09/22 23:28:33

  Modified:    src/main/org/apache/tools/ant/taskdefs/optional/dotnet
                        DotnetCompile.java Ilasm.java Ildasm.java
                        JSharp.java WsdlToDotnet.java
  Log:
  minor cleanups; no code changes
  
  Revision  Changes    Path
  1.18      +0 -2      
ant/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/DotnetCompile.java
  
  Index: DotnetCompile.java
  ===================================================================
  RCS file: 
/home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/DotnetCompile.java,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- DotnetCompile.java        21 Sep 2003 22:29:54 -0000      1.17
  +++ DotnetCompile.java        23 Sep 2003 06:28:33 -0000      1.18
  @@ -642,8 +642,6 @@
       }
   
   
  -
  -
       /**
        * add a define to the list of definitions
        * @param define
  
  
  
  1.31      +1 -1      
ant/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/Ilasm.java
  
  Index: Ilasm.java
  ===================================================================
  RCS file: 
/home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/Ilasm.java,v
  retrieving revision 1.30
  retrieving revision 1.31
  diff -u -r1.30 -r1.31
  --- Ilasm.java        6 Sep 2003 07:09:59 -0000       1.30
  +++ Ilasm.java        23 Sep 2003 06:28:33 -0000      1.31
  @@ -82,7 +82,7 @@
    *  /out:file ... /verbose is used some places; /quiet here in ildasm... 
etc.]
    *  It would be nice if someone made all the command line tools consistent 
(and
    *  not as brittle as the java cmdline tools) <p>
  - *
  + *  <p>
    *  The task is a directory based task, so attributes like <b>includes="*.il"
    *  </b> and <b>excludes="broken.il"</b> can be used to control the files 
pulled
    *  in. You can also use nested &lt;src&gt filesets to refer to source.
  
  
  
  1.4       +4 -3      
ant/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/Ildasm.java
  
  Index: Ildasm.java
  ===================================================================
  RCS file: 
/home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/Ildasm.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- Ildasm.java       21 Sep 2003 20:20:03 -0000      1.3
  +++ Ildasm.java       23 Sep 2003 06:28:33 -0000      1.4
  @@ -65,7 +65,7 @@
    * into ILASM assembly code. Useful when converting imported typelibs into
    * assembler before patching and recompiling, as one has to do when doing
    * advanced typelib work.
  - *
  + * <p>
    * As well as generating the named output file, the ildasm program
    * will also generate resource files <code>Icons.resources</code>
    * <code>Message.resources</code> and a .res file whose filename stub is 
derived
  @@ -76,13 +76,13 @@
    * creates the resources in the directory specified by 
<code>resourceDir</code> if
    * set, else in the same directory as the <code>destFile</code>.
    *
  - *
  + * <p>
    * This task requires the .NET SDK installed and ildasm on the path.
    * To disassemble using alternate CLR systems, set the executable attribute
    * to the name/path of the alternate implementation -one that must
    * support all the classic ildasm commands.
    *
  - *
  + * <p>
    * Dependency logic: the task executes the command if the output file is 
missing
    * or older than the source file. It does not take into account changes
    * in the options of the task, or timestamp differences in resource files.
  @@ -90,6 +90,7 @@
    * .il file in place with some error message. To prevent this from confusing
    * the dependency logic, the file specified by the <code>dest</code>
    * attribute is <i>always</i> deleted after an unsuccessful build.
  + * @ant.task category="dotnet"
    */
   public class Ildasm extends Task {
   
  
  
  
  1.6       +2 -0      
ant/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/JSharp.java
  
  Index: JSharp.java
  ===================================================================
  RCS file: 
/home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/JSharp.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- JSharp.java       21 Sep 2003 22:29:54 -0000      1.5
  +++ JSharp.java       23 Sep 2003 06:28:33 -0000      1.6
  @@ -58,9 +58,11 @@
   
   /**
    * Compile J# source down to a managed .NET application.
  + * <p>
    * J# is not Java. But it is the language closest to Java in the .NET 
framework.
    * This task compiles jsharp source (assumes a .jsl extension, 
incidentally), and
    * generates a .NET managed exe or dll.
  + * <p>
    * See 
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dv_vjsharp/html/vjoriMicrosoftVisualJ.asp
    * for vjc command options in glory detail.
    * @author Steve Loughran
  
  
  
  1.16      +1 -1      
ant/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/WsdlToDotnet.java
  
  Index: WsdlToDotnet.java
  ===================================================================
  RCS file: 
/home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/WsdlToDotnet.java,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- WsdlToDotnet.java 18 Jul 2003 14:21:23 -0000      1.15
  +++ WsdlToDotnet.java 23 Sep 2003 06:28:33 -0000      1.16
  @@ -62,7 +62,7 @@
    *
    * See "Creating an XML Web Service Proxy", "wsdl.exe" docs in
    * the framework SDK documentation
  - * @author      Steve Loughran [EMAIL PROTECTED]
  + * @author      Steve Loughran 
    * @version     0.5
    * @ant.task    name="wsdltodotnet" category="dotnet"
    * @since       Ant 1.5
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to