Repository: logging-log4net Updated Branches: refs/heads/feature/cd-pipeline a308192e7 -> 00eea53a9
Added a few echo commands to actually see what's going on Project: http://git-wip-us.apache.org/repos/asf/logging-log4net/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4net/commit/00eea53a Tree: http://git-wip-us.apache.org/repos/asf/logging-log4net/tree/00eea53a Diff: http://git-wip-us.apache.org/repos/asf/logging-log4net/diff/00eea53a Branch: refs/heads/feature/cd-pipeline Commit: 00eea53a9495e6c470a495ece6ca914d0a3fc754 Parents: a308192 Author: Dominik Psenner <[email protected]> Authored: Thu Jul 6 11:46:42 2017 +0200 Committer: Dominik Psenner <[email protected]> Committed: Thu Jul 6 11:46:42 2017 +0200 ---------------------------------------------------------------------- log4net.build | 7 +++++++ 1 file changed, 7 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/00eea53a/log4net.build ---------------------------------------------------------------------- diff --git a/log4net.build b/log4net.build index 94eea28..7c96ed8 100644 --- a/log4net.build +++ b/log4net.build @@ -1763,11 +1763,18 @@ limitations under the License. <echo message="Skipping build; required framework is not available: netstandard"/> </if> <if test="${dotnet.available == '0'}"> + <echo message="dotnet restore --configfile NuGet.Config"/> <exec program="dotnet" workingdir="netstandard"> <arg value="restore"/> <arg value="log4net.netstandard.sln"/> <arg value="--configfile NuGet.Config"/> </exec> + <if="${not current.build.config.release}" value="-c"> + <echo message="dotnet build log4net"/> + </if> + <if="${current.build.config.release}" value="-c"> + <echo message="dotnet build log4net -c Release"/> + </if> <exec program="dotnet" workingdir="netstandard"> <arg value="build"/> <arg value="log4net"/>
