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
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,13 +16,13 @@ Before starting the migration:
16
16
17
17
**Uninstall old packages:**
18
18
```powershell
19
-
PM> Uninstall-Package ElectronNET.API
19
+
dotnet remove package ElectronNET.API
20
20
```
21
21
22
22
**Install new packages:**
23
23
```powershell
24
-
PM> Install-Package ElectronNET.Core
25
-
PM> Install-Package ElectronNET.Core.AspNet # For ASP.NET projects
24
+
dotnet add package ElectronNET.Core
25
+
dotnet add package ElectronNET.Core.AspNet # For ASP.NET projects
26
26
```
27
27
28
28
> **Note**: The API package is automatically included as a dependency of `ElectronNET.Core`. See [Package Description](../RelInfo/Package-Description.md) for details about the package structure.
Copy file name to clipboardExpand all lines: docs/Home.md
+9-11Lines changed: 9 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,19 +34,16 @@ Electron.NET Core is a complete modernization of Electron.NET that eliminates th
34
34
35
35
## 🛠 System Requirements
36
36
37
-
-**.NET 8.0** or later
38
-
-**Node.js 22.x** or later
39
-
-**Visual Studio 2022** (recommended) or other .NET IDE
40
-
-**WSL2** (for Linux development on Windows)
37
+
See [System Requirements](GettingStarted/System-Requirements.md).
41
38
42
39
## 💡 Key Benefits
43
40
44
-
✅ **No CLI Tools Required** - Everything works through Visual Studio
45
-
✅ **Console App Support** - Use any HTML/JS source, not just ASP.NET
46
-
✅ **True Cross-Platform** - Build Linux apps from Windows
47
-
✅ **Modern Debugging** - Hot Reload and ASP.NET-first debugging
48
-
✅ **Flexible Packaging** - Choose any Electron version
49
-
✅ **MSBuild Integration** - Leverages .NET's build system
41
+
✅ **No CLI Tools Required** - Everything works through Visual Studio
42
+
✅ **Console App Support** - Use any HTML/JS source, not just ASP.NET
43
+
✅ **True Cross-Platform** - Build Linux apps from Windows
44
+
✅ **Modern Debugging** - Hot Reload and ASP.NET-first debugging
45
+
✅ **Flexible Packaging** - Choose any Electron version
46
+
✅ **MSBuild Integration** - Leverages .NET's build system
50
47
51
48
## 🚦 Getting Started
52
49
@@ -58,4 +55,5 @@ New to ElectronNET.Core? Start here:
58
55
59
56
## 🤝 Contributing
60
57
61
-
Found an issue or want to improve the documentation? Contributions are welcome! The wiki is auto-generated from the `/docs` folder in the [GitHub repository](https://github.com/ElectronNET/Electron.NET).
58
+
Found an issue or want to improve the documentation? Contributions are welcome!
59
+
The wiki is auto-generated from the `/docs` folder in the [GitHub repository](https://github.com/ElectronNET/Electron.NET).
Copy file name to clipboardExpand all lines: src/ElectronNET.WebApp/Views/About/Index.cshtml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@
10
10
<p>Use the demo snippets in an Electron app of your own. The <ahref="https://github.com/electron/electron-quick-start">Electron Quick Start<spanclass="u-visible-to-screen-reader">(opens in new window)</span></a> app is a bare-bones setup that pairs with these demos. Follow the instructions here to get it going.
11
11
To activate Electron.NET include the <ahref="https://www.nuget.org/packages/ElectronNET.API/"target="_blank">ElectronNET.API NuGet package</a> in your ASP.NET Core app.
0 commit comments