private static string GetPublishingTargetDir()

in Content/parameters.cake [298:309]


        private static string GetPublishingTargetDir(string defaultValue){
            var path = GetParameterValue(Constants.PUBLISHING_TARGET_DIR, defaultValue);

            if (string.IsNullOrEmpty(path)) {
                path = BuildConfiguration == "Debug"
                    ? ScLocalWebsiteRootDir
                    : ArtifactsBuildDir;
            }

            _context.Information($"Publishing target dir: {path}");
            return GetAbsoluteFilePath(path);
        }