зеркало из
1
0
Форкнуть 0

Merge pull request #247 from dorChuck/master

Fix the location of the WordList.txt resource when reading from assembly.
This commit is contained in:
Matt Cooper 2020-06-29 15:47:17 -04:00 коммит произвёл GitHub
Родитель 05589fee42 b2a825b3f5
Коммит 5d5e23e7da
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -239,7 +239,7 @@ namespace Microsoft.Azure.DevOps.ClientSamples.Git
{
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))
{