Skip to content

Commit

Permalink
go upwards
Browse files Browse the repository at this point in the history
  • Loading branch information
oguzhankoral committed Nov 30, 2024
1 parent 4122650 commit 8e70a5d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Sdk/FeatureImpactAnalyzer/GitHubPullRequestAnalyzer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,12 @@ private List<string> 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
Expand Down

0 comments on commit 8e70a5d

Please sign in to comment.