You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by dp...@apache.org on 2018/05/08 20:47:19 UTC

[2/2] logging-log4net git commit: Attempt to download latest nunit 2.6.4 binaries from nuget

Attempt to download latest nunit 2.6.4 binaries from nuget


Project: http://git-wip-us.apache.org/repos/asf/logging-log4net/repo
Commit: http://git-wip-us.apache.org/repos/asf/logging-log4net/commit/7f689393
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4net/tree/7f689393
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4net/diff/7f689393

Branch: refs/heads/feature/cd-pipeline
Commit: 7f689393e91551236647f0cf8897b0a66474b11d
Parents: 31356d6
Author: Dominik Psenner <dp...@apache.org>
Authored: Tue May 8 22:46:53 2018 +0200
Committer: Dominik Psenner <dp...@apache.org>
Committed: Tue May 8 22:46:53 2018 +0200

----------------------------------------------------------------------
 tests/nant.build | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/7f689393/tests/nant.build
----------------------------------------------------------------------
diff --git a/tests/nant.build b/tests/nant.build
index 2204501..f25dc1b 100644
--- a/tests/nant.build
+++ b/tests/nant.build
@@ -26,11 +26,11 @@ limitations under the License.
 
     <target name="install-nunit">
         <if test="${not file::exists('lib/${current.build.configuration.dir}/nunit.framework.dll')}">
-            <get src="https://github.com/nunit/nunitv2/releases/download/2.6.4/NUnit-2.6.4.zip"
+			<get src="https://www.nuget.org/api/v2/package/NUnit/2.6.5"
                  dest=".tmp-nunit.zip"/>
             <unzip zipfile=".tmp-nunit.zip"
                    todir=".tmp-nunit"/>
-            <copy file=".tmp-nunit/NUnit-2.6.4/bin/nunit.framework.dll"
+            <copy file=".tmp-nunit/lib/nunit.framework.dll"
                   todir="lib/${current.build.configuration.dir}"/>
             <delete file=".tmp-nunit.zip"/>
             <delete dir=".tmp-nunit"/>