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 2017/10/31 21:19:26 UTC

[2/5] logging-log4net git commit: Make dotnet test output build results to an xml file

Make dotnet test output build results to an xml file


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

Branch: refs/heads/feature/netstandard-2.0
Commit: c731855a49cecd37150d53794bcdbd1ce2b684bc
Parents: 26455f0
Author: Dominik Psenner <dp...@apache.org>
Authored: Tue Oct 31 20:35:26 2017 +0100
Committer: Dominik Psenner <dp...@apache.org>
Committed: Tue Oct 31 20:35:26 2017 +0100

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


http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/c731855a/tests/nant.build
----------------------------------------------------------------------
diff --git a/tests/nant.build b/tests/nant.build
index 815ead1..c79ffaa 100644
--- a/tests/nant.build
+++ b/tests/nant.build
@@ -868,6 +868,8 @@ limitations under the License.
     <target name="runtests-netstandard-1.3" description="Runs log4net tests on .NET Standard 1.3">
         <exec program="dotnet" workingdir="${log4net.basedir}/netstandard/log4net.tests">
             <arg value="test"/>
+			<arg value="-xml"/>
+			<arg value="${current.bin.dir}/log4net.Tests.dll-results.mstest.xml"/>
             <arg value="--verbosity"/>
 		    <arg value="detailed"/>
         </exec>