Repository: logging-log4net Updated Branches: refs/heads/feature/cd-pipeline 00eea53a9 -> e17124f1b
compile-netstandard: debug and release are now lowercase like all other targets Project: http://git-wip-us.apache.org/repos/asf/logging-log4net/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4net/commit/e17124f1 Tree: http://git-wip-us.apache.org/repos/asf/logging-log4net/tree/e17124f1 Diff: http://git-wip-us.apache.org/repos/asf/logging-log4net/diff/e17124f1 Branch: refs/heads/feature/cd-pipeline Commit: e17124f1b1b470051ad08aa67bf0ac1902a0505c Parents: 00eea53 Author: Dominik Psenner <[email protected]> Authored: Thu Jul 6 11:49:40 2017 +0200 Committer: Dominik Psenner <[email protected]> Committed: Thu Jul 6 11:49:40 2017 +0200 ---------------------------------------------------------------------- log4net.build | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/e17124f1/log4net.build ---------------------------------------------------------------------- diff --git a/log4net.build b/log4net.build index 7c96ed8..b024a7f 100644 --- a/log4net.build +++ b/log4net.build @@ -1783,12 +1783,12 @@ limitations under the License. </exec> <mkdir dir="${log4net.basedir}/bin/netstandard/1.3"/> <if test="${current.build.config.release}"> - <move todir="${log4net.basedir}/bin/netstandard/1.3/Release"> + <move todir="${log4net.basedir}/bin/netstandard/1.3/release"> <fileset basedir="netstandard/log4net/bin/Release/netstandard1.3"/> </move> </if> <ifnot test="${current.build.config.release}"> - <move todir="${log4net.basedir}/bin/netstandard/1.3/Debug"> + <move todir="${log4net.basedir}/bin/netstandard/1.3/debug"> <fileset basedir="netstandard/log4net/bin/Debug/netstandard1.3"/> </move> </ifnot> @@ -1938,7 +1938,7 @@ limitations under the License. <!-- check if required netstandard binaries are available --> <foreach item="String" in="netstandard" delim="," property="framework"> <foreach item="String" in="1.3" delim="," property="frameworkversion"> - <foreach item="String" in="Debug,Release" delim="," property="configuration"> + <foreach item="String" in="debug,release" delim="," property="configuration"> <property name="item" value="${framework}/${frameworkversion}/${configuration}"/> <if test="${not(directory::exists(path::combine(bin.dir, '${item}')))}"> <fail message="Missing binaries: ${item}"/>
