:point_up: November 12, 2020 3:17 PM
I have managed to get this working by building from the latest source
electronize build /target win
command fails if your user profile file has a white space on Windows. Of course there is a chance that I have miss-configured something while learning to use the software. The error looks like this:
Hi everyone. We are building a few similar but different versions of our application by tagging .e.g. /manifest electron.manifest.staging.json
or /manifest electron.manifest.release.json
onto our electronize build
commands.
Every manifest file has a different "productName" and "appId" entry in the build portion of the manifest files.
The windows installer, however, appears to always install to and overwrite whatever is in the directory C:\Users\USER\AppData\Local\Programs\electron-net\
. I guess I was expecting C:\Users\USER\AppData\Local\Programs\**[productName from the manifest file]**\
or something similar.
Will this not make it impossible to install more than one ElectronNET application on a Windows system, even from different vendors or am I missing something obvious?
Have any of you guys dealt with a similar problem?
Hey guys,
Does anyone know if it is possible to use this tool https://getuserflow.com/blog/electron with electron.net?
Hi All,
We are able to create the package using the command "electronize build /target win",
but on running the application throws the error. Application works fine when run using the
"electronize start".
Following is the error we are facing
Error.
An error occurred while processing your request.
Request ID: 00-14e1b02be83c904fac725b85478ac832-a693a34187cf0f42-00
Development Mode
Swapping to the Development environment displays detailed information about the error that occurred.
The Development environment shouldn't be enabled for deployed applications. It can result in displaying sensitive information from exceptions to end users. For local debugging, enable the Development environment by setting the ASPNETCORE_ENVIRONMENT environment variable to Development and restarting the app.
Could you please help.
Hi All,
I am able to run the application successfully after removing the PreferExactMatches="@true" from the following in
App.Razor file. Not sure why this is causing the problem for loading the page in ElectronNET shell control.
<Router AppAssembly="@typeof(Program).Assembly" PreferExactMatches="@true">
Hi
I'm investigating how to display a BrowserWindow modally.
BrowserWindowOptions has a Modal option with the following comment, but I don't know how to create a BrowserWindow as a child window without the Parent option.
/// <summary>
/// Whether this is a modal window. This only works when the window is a child
/// window.Default is false.
/// </ summary>
public bool Modal {get; set;}
I specified the parent window with the SetParent method after creating the BrowserWindow, but it didn't work modally.
Any information would be helpful.