diff --git a/ci-build/Consts.cs b/ci-build/Consts.cs index 003e035..6c89610 100644 --- a/ci-build/Consts.cs +++ b/ci-build/Consts.cs @@ -6,7 +6,7 @@ public static class Consts public static readonly InstallerProject[] InstallerManifests = { - new("archicad", [new("SpeckleConnector", "x64/ReleaseAC27/net6.0-windows")]) + new("archicad", [new("SpeckleConnector", "x64/ReleaseAC27/")]) }; } diff --git a/ci-build/Program.cs b/ci-build/Program.cs index cfb82fe..afdb1e9 100644 --- a/ci-build/Program.cs +++ b/ci-build/Program.cs @@ -102,7 +102,7 @@ Target( foreach (var asset in x.Projects) { - var fullPath = Path.Combine(".", asset.ProjectPath, "bin", "Release", asset.TargetName); + var fullPath = Path.Combine(".", asset.ProjectPath, asset.TargetName); if (!Directory.Exists(fullPath)) { throw new InvalidOperationException("Could not find: " + fullPath);