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

Commit

Permalink
Merge pull request #247 from dorChuck/master
Browse files Browse the repository at this point in the history
Fix the location of the WordList.txt resource when reading from assembly.
  • Loading branch information
vtbassmatt authored Jun 29, 2020
2 parents 05589fe + b2a825b commit 5d5e23e
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 5d5e23e

Please sign in to comment.