Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2846e9f719 | |||
| a7904d7485 | |||
| 12c11b4987 | |||
| 07569b146e | |||
| 112fdf0bb9 |
@@ -4,6 +4,7 @@
|
|||||||
|
|
||||||
<property name="solution.directory" value="${directory::get-current-directory()}"/>
|
<property name="solution.directory" value="${directory::get-current-directory()}"/>
|
||||||
<property name="build.output.directory" value="${solution.directory}\${outputDir}"/>
|
<property name="build.output.directory" value="${solution.directory}\${outputDir}"/>
|
||||||
|
<property name="Version.full" value="${Version.full}"/>
|
||||||
|
|
||||||
<target name="setup">
|
<target name="setup">
|
||||||
<delete dir="${build.output.directory}"/>
|
<delete dir="${build.output.directory}"/>
|
||||||
@@ -32,5 +33,11 @@
|
|||||||
<include name="**/*" />
|
<include name="**/*" />
|
||||||
</fileset>
|
</fileset>
|
||||||
</copy>
|
</copy>
|
||||||
|
|
||||||
|
<foreach item="File" in="${build.output.directory}" property="fileName">
|
||||||
|
<if test="${string::to-lower(path::get-extension(fileName)) == '.msi'}">
|
||||||
|
<move file="${fileName}" tofile="${path::combine(path::get-directory-name(fileName), path::get-file-name-without-extension(fileName) + '${Version.full}.msi')}" />
|
||||||
|
</if>
|
||||||
|
</foreach>
|
||||||
</target>
|
</target>
|
||||||
</project>
|
</project>
|
||||||
Reference in New Issue
Block a user