Skip to content

Commit

Permalink
Allow backslashes in CodeTaskFactory references
Browse files Browse the repository at this point in the history
  • Loading branch information
rainersigwald committed Dec 21, 2020
1 parent 0ee49fc commit 84643d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Tasks/CodeTaskFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ private List<string> ExtractReferencedAssemblies()
return null;
}

references.Add(attribute.Value);
references.Add(FileUtilities.MaybeAdjustFilePath(attribute.Value));
}

return references;
Expand Down

0 comments on commit 84643d8

Please sign in to comment.