Skip to content
This repository has been archived by the owner on Jul 15, 2023. It is now read-only.

Commit

Permalink
Merge pull request #939 from microsoft/vsixfilenotfound
Browse files Browse the repository at this point in the history
fix issue Analyzing projects in VS fails due to file not found #938
  • Loading branch information
Lxiamail authored Oct 27, 2020
2 parents 271bfa2 + ac81839 commit 6d5b655
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public ProjectAnalyzer(

foreach (var file in output)
{
targetAssemblies.Add(Path.GetFileName(file));
targetAssemblies.Add(file);
}

referencedNuGetPackages.UnionWith(GetPackageReferences(project));
Expand Down

0 comments on commit 6d5b655

Please sign in to comment.