diff --git a/Sdk/FeatureImpactAnalyzer/GitHubPullRequestAnalyzer.cs b/Sdk/FeatureImpactAnalyzer/GitHubPullRequestAnalyzer.cs index 89e9446ce..289372812 100644 --- a/Sdk/FeatureImpactAnalyzer/GitHubPullRequestAnalyzer.cs +++ b/Sdk/FeatureImpactAnalyzer/GitHubPullRequestAnalyzer.cs @@ -139,8 +139,12 @@ private List GetFeatureImpactAttributes(string methodName) .Where(a => a.FullName != null && a.FullName.StartsWith("Speckle")) .ToList(); + string? solutionDirectory = Path.GetFullPath( + Path.Combine(Assembly.GetExecutingAssembly().Location, "..", "..", "..") + ); + // Dynamically load assemblies from the solution directory - string? solutionDirectory = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location); + // string? solutionDirectory = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location); if (!string.IsNullOrEmpty(solutionDirectory)) { var dllFiles = Directory