Skip to content
This repository has been archived by the owner on Dec 14, 2024. It is now read-only.

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Barsonax committed Sep 1, 2019
1 parent 387df2e commit b4e21f5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,9 @@ class Build : NukeBuild
.Executes(() =>
{
DotNetTest(s => s
.SetOutput(BuildOutput / "netcoreapp2.0")
.SetOutput(BuildOutput / "net472")
.SetWorkingDirectory(SrcPath)
.SetFramework("netcoreapp2.0")
.SetFramework("net472")
.SetConfiguration(Configuration)
.SetProperties(NoWarns)
.EnableNoBuild());
Expand All @@ -113,7 +113,7 @@ class Build : NukeBuild
.DependsOn(Compile)
.Executes(() =>
{
string testdlls = GlobFiles(BuildOutput / "netcoreapp2.0", "*.Test.dll").Join(" ");
string testdlls = GlobFiles(BuildOutput / "net472", "*.Test.dll").Join(" ");
string targetArgs = $"vstest {testdlls} /logger:trx;LogFileName=testresults.trx";
string dotnetPath = ToolPathResolver.GetPathExecutable("dotnet");
AbsolutePath coverageSnapshot = CoverageDirectory / "coverage.dcvr";
Expand Down

0 comments on commit b4e21f5

Please sign in to comment.