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/11/12 13:25:45 UTC

logging-log4net git commit: Fix working dir of netstandard tests

Repository: logging-log4net
Updated Branches:
  refs/heads/feature/cd-pipeline 7ea50b322 -> 05c3a613f


Fix working dir of netstandard tests


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

Branch: refs/heads/feature/cd-pipeline
Commit: 05c3a613f7fe34f83c5270358cd528925f14ec52
Parents: 7ea50b3
Author: Dominik Psenner <dp...@apache.org>
Authored: Sun Nov 12 14:25:20 2017 +0100
Committer: Dominik Psenner <dp...@apache.org>
Committed: Sun Nov 12 14:25:20 2017 +0100

----------------------------------------------------------------------
 netstandard/1.3/log4net.tests/log4net.tests.csproj | 2 +-
 tests/nant.build                                   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/05c3a613/netstandard/1.3/log4net.tests/log4net.tests.csproj
----------------------------------------------------------------------
diff --git a/netstandard/1.3/log4net.tests/log4net.tests.csproj b/netstandard/1.3/log4net.tests/log4net.tests.csproj
index 55ed0e6..b644ad9 100755
--- a/netstandard/1.3/log4net.tests/log4net.tests.csproj
+++ b/netstandard/1.3/log4net.tests/log4net.tests.csproj
@@ -20,7 +20,7 @@
   </ItemGroup>
 
   <ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">
-    <ProjectReference Include="../../log4net/log4net.csproj" />
+    <ProjectReference Include="../log4net/log4net.csproj" />
     <PackageReference Include="NUnit" Version="3.9.0" />
   </ItemGroup>
 

http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/05c3a613/tests/nant.build
----------------------------------------------------------------------
diff --git a/tests/nant.build b/tests/nant.build
index b04af84..edbe3f9 100644
--- a/tests/nant.build
+++ b/tests/nant.build
@@ -866,7 +866,7 @@ limitations under the License.
     </target>
 
     <target name="runtests-netstandard-1.3" description="Runs log4net tests on .NET Standard 1.3">
-		<exec program="dotnet" workingdir="${log4net.basedir}/netstandard/1.3/log4net.tests" failonerror="false">
+		<exec program="dotnet" workingdir="${log4net.basedir}/netstandard/1.3" failonerror="false">
             <arg value="test"/>
             <arg value="--logger:trx"/>
         </exec>