从asp.net核心控制台应用运行网站

时间:2019-06-04 19:45:58

标签: c# asp.net-mvc asp.net-core

我有一个控制台应用程序,它将成为一项服务,它有一个配置服务的网站。

我已经建立了我的网站,当我运行该项目时,它运行正常。

我在控制台应用程序中引用了我的Web项目,然后在其中使用以下代码来启动网站。

    Task.Factory.StartNew(new Action(() => Website.Program.Main(null)), TaskCreationOptions.LongRunning);

我在网站程序类中的代码是

    public class Program
{
    public static void Main(string[] args)
    {
        CreateWebHostBuilder(args).Build().Run();
    }

    public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
        WebHost.CreateDefaultBuilder(args)
            .UseStartup<Startup>()
            .UseUrls("http://0.0.0.0:1234");              
}

我的问题是网站现在无法在wwwRoot中找到css文件和javascript文件,我尝试将应用程序发布到控制台应用程序的debug文件夹中,但这没有用。如果我不发布,则在控制台应用程序的debug文件夹中只有dll文件,如果我确实发布了所有文件,但是视图找不到它们。

我在视图中使用〜查找文件。

理想情况下,我希望可以安装的服务承载其自己的网站和API,而无需在本地计算机IIS中显示该服务或需要通过Windows功能启用IIS。

编辑Startup.cs

  public class Startup
{
    public Startup(IConfiguration configuration)
    {
        Configuration = configuration;
    }

    public IConfiguration Configuration { get; }

    // This method gets called by the runtime. Use this method to add services to the container.
    public void ConfigureServices(IServiceCollection services)
    {
        services.Configure<CookiePolicyOptions>(options =>
        {
            // This lambda determines whether user consent for non-essential cookies is needed for a given request.
            options.CheckConsentNeeded = context => true;
            options.MinimumSameSitePolicy = SameSiteMode.None;
        });
        services.AddAuthentication(opt =>
        {
            opt.DefaultChallengeScheme = CookieAuthenticationDefaults.AuthenticationScheme;
            opt.DefaultSignInScheme = CookieAuthenticationDefaults.AuthenticationScheme;
            opt.DefaultAuthenticateScheme = CookieAuthenticationDefaults.AuthenticationScheme;
        }).AddCookie(CookieAuthenticationDefaults.AuthenticationScheme, options =>
        {
            options.Cookie.Name = "TmiginScheme";
            options.LoginPath = "/Account/Login";
            options.LogoutPath = "/Account/Logout";
            options.AccessDeniedPath = "/Home/AccessDenied";
            options.ExpireTimeSpan = TimeSpan.FromDays(14);
            options.SlidingExpiration = true;
        });
        services.AddDistributedMemoryCache();
        services.AddSession();

        services.Configure<SettingsViewModel>(Configuration.GetSection("Settings"));
        services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_2);
    }

    // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
    public void Configure(IApplicationBuilder app, IHostingEnvironment env)
    {
        app.UseSession();
        app.UseAuthentication();

        var cookiePolicyOptions = new CookiePolicyOptions
        {
            MinimumSameSitePolicy = SameSiteMode.Strict,
        };

        app.UseCookiePolicy(cookiePolicyOptions);
        if (env.IsDevelopment())
        {
            app.UseDeveloperExceptionPage();
        }
        else
        {
            app.UseExceptionHandler("/Home/Error");
        }
        app.UseStaticFiles();

    app.UseCookiePolicy();

        app.UseMvc(routes =>
        {
            routes.MapRoute(
                name: "default",
                template: "{controller=Home}/{action=Index}/{id?}");
        });
    }
}

2 个答案:

答案 0 :(得分:0)

一个临时修复程序,我正在直接发布到调试文件夹,我需要在禁用剃须刀编译的情况下发布到netcoreapp2.2文件夹。如果有人进行更简单的部署,这仍然不是将网站发布到控制台应用程序根目录中的理想解决方案。

答案 1 :(得分:0)

在调用Program.Main之前,set the current directoryCreateWebHostBuildercontent root path内。

此外,本文可能是在Windows服务中托管ASP.NET Core网站的好方法:Host ASP.NET Core in a Windows Service

更多详细信息

使用app.UseStaticFiles()中间件时,应用程序希望在"Web Root"目录by default content root path中找到静态文件。

但是要了解wwwroot,应用程序必须首先知道其基本路径needs to be set

其中

  

确定ASP.NET Core从何处开始搜索内容文件,例如MVC视图

以及哪个

  • {{3}}在Windows服务中运行(或作为其他程序中的长期任务生成时)