Files
Electron.NET/ElectronNET.CLI/EmbeddedFileHelper.cs

47 lines
1.7 KiB
C#
Raw Permalink Normal View History

2017-10-04 23:11:23 +02:00
using System;
using System.IO;
using System.Reflection;
namespace ElectronNET.CLI
{
public static class EmbeddedFileHelper
{
private const string ResourcePath = "ElectronNET.CLI.{0}";
2017-10-05 21:28:47 +02:00
private static Stream GetTestResourceFileStream(string folderAndFileInProjectPath)
2017-10-04 23:11:23 +02:00
{
var asm = Assembly.GetExecutingAssembly();
var resource = string.Format(ResourcePath, folderAndFileInProjectPath);
return asm.GetManifestResourceStream(resource);
}
2017-10-07 01:32:19 +02:00
public static void DeployEmbeddedFile(string targetPath, string file, string namespacePath = "")
2017-10-05 21:28:47 +02:00
{
using (var fileStream = File.Create(Path.Combine(targetPath, file)))
{
var streamFromEmbeddedFile = GetTestResourceFileStream("ElectronHost." + namespacePath + file);
if (streamFromEmbeddedFile == null)
{
Console.WriteLine("Error: Couldn't find embedded file: " + file);
}
2017-10-05 21:28:47 +02:00
streamFromEmbeddedFile.CopyTo(fileStream);
}
}
public static void DeployEmbeddedFileToTargetFile(string targetPath, string embeddedFile, string targetFile, string namespacePath = "")
{
using (var fileStream = File.Create(Path.Combine(targetPath, targetFile)))
{
var streamFromEmbeddedFile = GetTestResourceFileStream("ElectronHost." + namespacePath + embeddedFile);
if (streamFromEmbeddedFile == null)
{
Console.WriteLine("Error: Couldn't find embedded file: " + embeddedFile);
}
streamFromEmbeddedFile.CopyTo(fileStream);
}
}
2017-10-04 23:11:23 +02:00
}
}