From b2a825b3f587e9dffd6563746d7d09ab9c2eb302 Mon Sep 17 00:00:00 2001 From: "Hanson, Chuck" Date: Tue, 14 May 2019 07:31:40 -0500 Subject: [PATCH] Fix the location of the WordList.txt file in assembly. --- ClientLibrary/Samples/Git/GitSampleHelpers.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ClientLibrary/Samples/Git/GitSampleHelpers.cs b/ClientLibrary/Samples/Git/GitSampleHelpers.cs index 7ed78970..bc12e902 100644 --- a/ClientLibrary/Samples/Git/GitSampleHelpers.cs +++ b/ClientLibrary/Samples/Git/GitSampleHelpers.cs @@ -239,7 +239,7 @@ private static void LoadWordList() { List words = new List(); - string wordListName = "Microsoft.TeamServices.Samples.Client.Git.WordList.txt"; + string wordListName = "Microsoft.Azure.DevOps.ClientSamples.Git.WordList.txt"; using (Stream inputStream = Assembly.GetExecutingAssembly().GetManifestResourceStream(wordListName)) using (StreamReader reader = new StreamReader(inputStream)) {