Browse Source

info on dotnet availability tests only printed in verbose mode.

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@272391 13f79535-47bb-0310-9956-ffa450edef68
master
Steve Loughran 23 years ago
parent
commit
ee24cd7547
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      build.xml

+ 3
- 2
build.xml View File

@@ -457,7 +457,7 @@
<available file="wsdl.exe" filepath="${env.Path}" />
</or>
</condition>
<echo> wsdl.found=${wsdl.found}</echo>
<echo level="verbose"> wsdl.found=${wsdl.found}</echo>
<condition property="csc.found">
<or>
<available file="csc" filepath="${env.PATH}" />
@@ -465,13 +465,14 @@
<available file="csc.exe" filepath="${env.Path}" />
</or>
</condition>
<echo> csc.found=${csc.found}</echo>
<echo level="verbose"> csc.found=${csc.found}</echo>
<condition property="dotnetapps.found">
<and>
<isset property="csc.found"/>
<isset property="wsdl.found"/>
</and>
</condition>
<echo level="verbose"> csc.found=${csc.found}</echo>
</target>




Loading…
Cancel
Save