Skip to content

Commit

Permalink
ci: Fix reference assembly name
Browse files Browse the repository at this point in the history
  • Loading branch information
bdunderscore committed Sep 10, 2023
1 parent 22de51f commit c1b11ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UnitTests~/DocsBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ private static void MungeProjectFile(string file)
{
var assembly = possibleDll.Substring(
possibleDll.LastIndexOf('/'));
assembly = possibleDll.Substring(possibleDll.Length - 4);
assembly = assembly.Substring(0, assembly.Length - 4);

var referenceNode = doc.CreateElement("Reference", root.NamespaceURI);
referenceNode.SetAttribute("Include", assembly);
Expand Down

0 comments on commit c1b11ac

Please sign in to comment.