You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by bo...@apache.org on 2003/09/23 09:29:28 UTC

cvs commit: ant/src/main/org/apache/tools/ant/taskdefs/optional/dotnet DotnetCompile.java

bodewig     2003/09/23 00:29:28

  Modified:    docs/manual/OptionalTasks dotnet.html
               src/main/org/apache/tools/ant/taskdefs/optional/dotnet
                        DotnetCompile.java
  Log:
  Fix docs of <csc>'s includeDefaultReference attribute, fix its default value to match the documentation
  
  Revision  Changes    Path
  1.11      +2 -3      ant/docs/manual/OptionalTasks/dotnet.html
  
  Index: dotnet.html
  ===================================================================
  RCS file: /home/cvs/ant/docs/manual/OptionalTasks/dotnet.html,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- dotnet.html	1 Dec 2002 01:31:05 -0000	1.10
  +++ dotnet.html	23 Sep 2003 07:29:28 -0000	1.11
  @@ -117,9 +117,8 @@
     </tr>
     <tr>
       <td valign="top">includeDefaultReferences</td>
  -    <td valign="top">Flag which when true automatically includes
  -    the common assemblies in dotnet, and tells the compiler to link in
  -    mscore.dll
  +    <td valign="top">Controls csc's /nostdlib argument,
  +    &quot;true&quot;(default) implies /nostdlib-.
       </td>
       <td valign="top">&quot;true&quot;(default) or &quot;false&quot;</td>
     </tr>
  
  
  
  1.19      +2 -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.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- DotnetCompile.java	23 Sep 2003 06:28:33 -0000	1.18
  +++ DotnetCompile.java	23 Sep 2003 07:29:28 -0000	1.19
  @@ -115,7 +115,7 @@
       /**
        *  flag to enable automatic reference inclusion
        */
  -    private boolean includeDefaultReferences;
  +    private boolean includeDefaultReferences = true;
   
       /**
        *  icon for incorporation into apps
  @@ -313,7 +313,7 @@
        * in dotnet, and tells the compiler to link in mscore.dll.
        *
        *  set the automatic reference inclusion flag on or off this flag controls
  -     *  the string of references and the /nostdlib option in CSC
  +     *  the /nostdlib option in CSC
        *
        *@param  f  on/off flag
        */
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org
For additional commands, e-mail: dev-help@ant.apache.org