Skip to content

Commit

Permalink
Updated paths to dlls after added many target frameworks
Browse files Browse the repository at this point in the history
  • Loading branch information
oldmine committed Oct 6, 2020
1 parent ef75ded commit b55b544
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,11 @@ if (BuildSystem.IsRunningOnAppVeyor)
//////////////////////////////////////////////////////////////////////

// Directories
var TARGET_FRAMEWORK = "net20";
var PROJECT_DIR = Context.Environment.WorkingDirectory.FullPath + "/";
var PACKAGE_DIR = PROJECT_DIR + "package/";
var TOOLS_DIR = PROJECT_DIR + "tools/";
var BIN_DIR = PROJECT_DIR + "bin/" + configuration + "/";
var BIN_DIR = PROJECT_DIR + "bin/" + configuration + "/" + TARGET_FRAMEWORK + "/";
var BIN_SRC = BIN_DIR; // Source of binaries used in packaging
var TEST_NUNIT_DIR = PROJECT_DIR + "bin/nunit/";
var TEST_PACKAGES_DIR = PROJECT_DIR + "bin/packages/";
Expand All @@ -84,7 +85,7 @@ if (binaries != null)
var SOLUTION_FILE = PROJECT_DIR + "teamcity-event-listener.sln";
var TEST_SOLUTION_FILE = PROJECT_DIR + "teamcity-event-listener-tests.sln";
var NUNIT3_CONSOLE = TOOLS_DIR + "NUnit.ConsoleRunner.3.8.0/tools/nunit3-console.exe";
var TEST_ASSEMBLY = BIN_DIR + "teamcity-event-listener.tests.dll";
var TEST_ASSEMBLY = BIN_DIR + TARGET_FRAMEWORK + "teamcity-event-listener.tests.dll";
var INTEGRATION_TEST_ASSEMBLY = BIN_DIR + "nunit.integration.tests.dll";

// MetaData used in the nuget and chocolatey packages
Expand Down

0 comments on commit b55b544

Please sign in to comment.