We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 050c31c commit 91f76f8Copy full SHA for 91f76f8
src/ElectronNET.AspNet/API/WebHostBuilderExtensions.cs
@@ -75,7 +75,7 @@ public static IWebHostBuilder UseElectron(this IWebHostBuilder builder, string[]
75
// now we have implemented the live reload if app is run using /watch then we need to use the default project path.
76
77
// For port 0 (dynamic port assignment), Kestrel requires binding to specific IP (127.0.0.1) not localhost
78
- var host = webPort == 0? "127.0.0.1" : "localhost";
+ var host = webPort == 0 ? "127.0.0.1" : "localhost";
79
80
if (Directory.Exists($"{AppDomain.CurrentDomain.BaseDirectory}\\wwwroot"))
81
{
0 commit comments