Files
Electron.NET/ElectronNET.CLI/Commands/BuildCommand.cs

91 lines
3.4 KiB
C#
Raw Normal View History

2017-10-05 04:44:58 +02:00
using System;
using System.Collections.Generic;
using System.IO;
2017-10-08 23:22:20 +02:00
using System.Runtime.InteropServices;
2017-10-05 04:44:58 +02:00
using System.Threading.Tasks;
using ElectronNET.CLI.Commands.Actions;
2017-10-05 04:44:58 +02:00
namespace ElectronNET.CLI.Commands
{
public class BuildCommand : ICommand
{
public const string COMMAND_NAME = "build";
public const string COMMAND_DESCRIPTION = "Build your Electron Application.";
public const string COMMAND_ARGUMENTS = "<Platform> to build (default is current OS, possible values are: win,osx,linux)";
2017-10-05 04:44:58 +02:00
public static IList<CommandOption> CommandOptions { get; set; } = new List<CommandOption>();
private string[] _args;
public BuildCommand(string[] args)
{
_args = args;
}
2017-10-05 04:44:58 +02:00
public Task<bool> ExecuteAsync()
{
return Task.Run(() =>
{
2017-10-08 23:22:20 +02:00
Console.WriteLine("Build Electron Application...");
2017-10-05 04:44:58 +02:00
string desiredPlatform = "";
if (_args.Length > 0)
{
desiredPlatform = _args[0];
}
var platformInfo = GetTargetPlatformInformation.Do(desiredPlatform);
2017-10-08 23:22:20 +02:00
string tempPath = Path.Combine(Directory.GetCurrentDirectory(), "obj", "desktop", desiredPlatform);
if (Directory.Exists(tempPath) == false)
2017-10-08 23:22:20 +02:00
{
Directory.CreateDirectory(tempPath);
2017-10-08 23:22:20 +02:00
}
2017-10-05 04:44:58 +02:00
2017-10-19 21:31:32 +02:00
Console.WriteLine("Executing dotnet publish in this directory: " + tempPath);
string tempBinPath = Path.Combine(tempPath, "bin");
Console.WriteLine($"Build ASP.NET Core App for {platformInfo.NetCorePublishRid}...");
2017-10-11 23:29:58 +02:00
ProcessHelper.CmdExecute($"dotnet publish -r {platformInfo.NetCorePublishRid} --output \"{tempBinPath}\"", Directory.GetCurrentDirectory());
2017-10-11 23:29:58 +02:00
DeployEmbeddedElectronFiles.Do(tempPath);
2017-10-07 01:32:19 +02:00
2017-10-05 04:44:58 +02:00
Console.WriteLine("Start npm install...");
2017-10-05 21:28:47 +02:00
ProcessHelper.CmdExecute("npm install", tempPath);
2017-10-05 04:44:58 +02:00
2017-10-05 21:28:47 +02:00
Console.WriteLine("Start npm install electron-packager...");
2017-10-08 23:56:04 +02:00
2017-10-11 23:29:58 +02:00
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
2017-10-08 23:56:04 +02:00
{
2017-10-19 21:46:46 +02:00
// Works proper on Windows...
2017-10-08 23:56:04 +02:00
ProcessHelper.CmdExecute("npm install electron-packager --global", tempPath);
}
else
{
2017-10-09 00:13:04 +02:00
// ToDo: find another solution or document it proper
// GH Issue https://github.com/electron-userland/electron-prebuilt/issues/48
2017-10-15 23:15:42 +02:00
Console.WriteLine("Electron Packager - make sure you invoke 'sudo npm install electron-packager --global' at " + tempPath + " manually. Sry.");
2017-10-08 23:56:04 +02:00
}
2017-10-05 04:44:58 +02:00
2017-10-05 21:28:47 +02:00
Console.WriteLine("Build Electron Desktop Application...");
2017-10-19 21:58:50 +02:00
string buildPath = Path.Combine(Directory.GetCurrentDirectory(), "bin", "desktop");
2017-10-19 21:31:32 +02:00
2017-10-05 23:37:52 +02:00
Console.WriteLine("Executing electron magic in this directory: " + buildPath);
2017-10-08 23:56:04 +02:00
// ToDo: Need a solution for --asar support
Console.WriteLine($"Package Electron App for Platform {platformInfo.ElectronPackerPlatform}...");
ProcessHelper.CmdExecute($"electron-packager . --platform={platformInfo.ElectronPackerPlatform} --arch=x64 --out=\"{buildPath}\" --overwrite", tempPath);
2017-10-11 23:29:58 +02:00
2017-10-16 22:58:52 +02:00
Console.WriteLine("... done");
2017-10-05 04:44:58 +02:00
return true;
});
}
2017-10-05 21:28:47 +02:00
2017-10-05 04:44:58 +02:00
}
}