private static string GetCIFolder()
 {
     return(BuildHelpers.GetSolutionPath() // scripts/CI/
            .CombineAsPath("..")
            .CombineAsPath("..")
            .CombineAsPath("scripts")
            .CombineAsPath("CI"));
 }
 /// <summary>
 /// Get path to output folder
 /// </summary>
 /// <returns></returns>
 private static string GetAbsoluteOutputPath()
 {
     return(BuildHelpers.GetSolutionPath().CombineAsPath(RelativeOutputPath));
 }