This commit is contained in:
Robert Muehsig
2017-10-15 00:08:15 +02:00
parent d099363fb9
commit f3050b9dc4
9 changed files with 122 additions and 14 deletions

View File

@@ -19,7 +19,7 @@ namespace ElectronNET.CLI
{
using (var fileStream = File.Create(Path.Combine(targetPath, file)))
{
var streamFromEmbeddedFile = GetTestResourceFileStream("ElectronHost." + namespacePath + file);
var streamFromEmbeddedFile = GetTestResourceFileStream(namespacePath + file);
streamFromEmbeddedFile.CopyTo(fileStream);
}
}