-
-
Notifications
You must be signed in to change notification settings - Fork 746
Closed
Labels
Description
- Version: 9.31.2
.NET Core Version: 3.1
Node.js Version: 12.13.0
- Target: Windows (10)
First of all, this is a very interesting project that I'm excited to experiment with for building small projects.
The application doesn't work for F# ASP.NET Core MVC applications, or Blazor (using Bolero). While electronize init throws an exception due to only .csproj projects being searched, manually filling the fields of the manifest file to match an equivalent C# project caused electronize start to hang just after outputting stdout: Use Electron Port:
Steps to Reproduce:
- Run
dotnet new mvc -lang F# - Add ElectronNET project with
dotnet add package ElectronNET.API - Add
webBuilder.UseElectron(args) |> ignoreto Program.fs - Add
async { do! Electron.WindowManager.CreateWindowAsync() |> Async.AwaitTask |> Async.Ignore }to Startup.fs - Run
electronize init, manually correct "executable", "name", "apiId" and "projectName" to match equivalent C# project - Add
CopyToOutputDirectoryforelectron.manifest.jsonin*.fsproj - Run
electronize start