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

Commit

Permalink
Fix the location of the WordList.txt file in assembly.
Browse files Browse the repository at this point in the history
  • Loading branch information
dorChuck committed May 14, 2019
1 parent d95b476 commit b2a825b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ClientLibrary/Samples/Git/GitSampleHelpers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ private static void LoadWordList()
{
List<string> words = new List<string>();

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))
{
Expand Down

0 comments on commit b2a825b

Please sign in to comment.