Sha256: 6cf92eebb2aa1c5a92a3e761a6b8e11e3676b1ea7f810f1e8a3faec498a028a2

Contents?: true

Size: 820 Bytes

Versions: 7

Compression:

Stored size: 820 Bytes

Contents

<?xml version="1.0"?>
<project name="Test Solution" default="build">
  <property name="debug" value="true"/>
  <property name="version" value="0.0.1"/>
  <property name="build.mode" value="debug"/>
  <property name="out.file.dir" value="out/${version}/${build.mode}"/>

  <target name="clean">
    <delete>
      <fileset>
        <include name="out/**"/>
      </fileset>
    </delete>
  </target>

  <target name="build">
    <mkdir dir="${out.file.dir}" />
    <echo message="I am an output file." file="${out.file.dir}/buildfile.txt" append="false"/>
  </target>
  
  <target name="other">
    <mkdir dir="${out.file.dir}" if="${not directory::exists('${out.file.dir}')}" />
    <echo message="I am the extra file." file="${out.file.dir}/otherfile.txt" append="false"/>
  </target>
</project>

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
albacore-0.2.0.preview1 spec/support/TestSolution/TestSolution.build
albacore-0.1.5 spec/support/TestSolution/TestSolution.build
albacore-0.1.4 spec/support/TestSolution/TestSolution.build
albacore-0.1.3 spec/support/TestSolution/TestSolution.build
albacore-0.1.2 spec/support/TestSolution/TestSolution.build
albacore-0.1.1 spec/support/TestSolution/TestSolution.build
albacore-0.1.0 spec/support/TestSolution/TestSolution.build