You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/Core/Migration-Guide.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ dotnet add package ElectronNET.Core.AspNet # For ASP.NET projects
31
31
### Step 2: Configure Project Settings
32
32
33
33
**Auto-generated Configuration:**
34
-
ElectronNET.Core automatically creates `electron-builder.json` during the first build or NuGet restore. No manual configuration is needed for basic setups.
34
+
ElectronNET.Core automatically creates `electron-builder.json`in the `Properties` folder of your project during the first build or NuGet restore. No manual configuration is needed for basic setups.
35
35
36
36
**Migrate Existing Configuration:**
37
37
If you have an existing `electron.manifest.json` file:
@@ -63,6 +63,9 @@ You can also manually edit `electron-builder.json`:
63
63
}
64
64
```
65
65
66
+
**Modify Launch Settings:**
67
+
ElectronNET.Core no longer needs a separate CLI tool (electronize.exe) for launching. You should update your launch settings to use either the ASP.NET-first or Electron-first approach. See [Debugging](../Using/Debugging.md) for details.
0 commit comments