Move some parts from ReadMe to Wiki

This commit is contained in:
softworkz
2025-10-15 22:12:29 +02:00
parent 771b1109f7
commit 2bc2b4bb70
5 changed files with 49 additions and 65 deletions

View File

@@ -70,6 +70,21 @@ Since electron builder still expects a `package.json` file to exist, ElectronNET
}
```
### Node.js Integration
Electron.NET requires Node.js integration to be enabled for IPC to function. If you are not using the IPC functionality you can disable Node.js integration like so:
```csharp
WebPreferences wp = new WebPreferences();
wp.NodeIntegration = false;
BrowserWindowOptions browserWindowOptions = new BrowserWindowOptions
{
WebPreferences = wp
};
```
## 🚀 Next Steps

View File

@@ -131,6 +131,12 @@ The publish process will:
`publish\Release\netx.0\xxx-xxx\`
## MacOS
> [!NOTE]
> macOS builds can't be created on Windows machines because they require symlinks that aren't supported on Windows (per [this Electron issue](https://github.com/electron-userland/electron-packager/issues/71)). macOS builds can be produced on either Linux or macOS machines.
## 🚀 Next Steps
- **[Startup Methods](Startup-Methods.md)** - Understanding different launch modes for packaged apps