0

我正在使用带有 Electron NET 的 asp.net 核心剃须刀页面来调试 Electron 应用程序,当我使用电子 cli 构建它时,它的运行没有错误

>electronize build /target win

并运行它安装的设置,应用程序出现在任务管理器上,但没有窗口我的代码:在启动中

  public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
    {
        if (env.IsDevelopment())
        {
            app.UseDeveloperExceptionPage();
            app.UseMigrationsEndPoint();
        }
        else
        {
            app.UseExceptionHandler("/Error");
            // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
            app.UseHsts();
        }

        app.UseHttpsRedirection();
        app.UseStaticFiles();

        app.UseRouting();

        app.UseAuthentication();
        app.UseAuthorization();
        app.UseEndpoints(endpoints =>
        {

            endpoints.MapRazorPages();
        });
        if (HybridSupport.IsElectronActive)
        {
            
            CreateWindow();
        }
    }
    private async void CreateWindow()
    {
        var window = await Electron.WindowManager.CreateWindowAsync();
        
        window.OnClosed += () => {
            Electron.App.Quit();
        };
    }

并在程序中:

 public static IHostBuilder CreateHostBuilder(string[] args) =>
        Host.CreateDefaultBuilder(args)
            .ConfigureWebHostDefaults(webBuilder =>
            {
                webBuilder.UseElectron(args);

                webBuilder.UseStartup<Startup>();
            });
4

1 回答 1

0

当我使用 mvc 项目而不是剃须刀页面时,它可以正常工作

于 2021-03-21T14:47:12.150 回答