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 578cb89
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion 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 Down

0 comments on commit 578cb89

Please sign in to comment.