Skip to content
This repository was archived by the owner on Oct 4, 2021. It is now read-only.

Commit 5d5e23e

Browse files
authored
Merge pull request #247 from dorChuck/master
Fix the location of the WordList.txt resource when reading from assembly.
2 parents 05589fe + b2a825b commit 5d5e23e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ClientLibrary/Samples/Git/GitSampleHelpers.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ private static void LoadWordList()
239239
{
240240
List<string> words = new List<string>();
241241

242-
string wordListName = "Microsoft.TeamServices.Samples.Client.Git.WordList.txt";
242+
string wordListName = "Microsoft.Azure.DevOps.ClientSamples.Git.WordList.txt";
243243
using (Stream inputStream = Assembly.GetExecutingAssembly().GetManifestResourceStream(wordListName))
244244
using (StreamReader reader = new StreamReader(inputStream))
245245
{

0 commit comments

Comments
 (0)