由IHttpContextAccessor提供的Windows登录名,HttpContext为空,net 6

h4cxqtbf  于 2022-12-19  发布在  Windows
关注(0)|答案(1)|浏览(134)

enter image description here
enter image description here
并且在startup中添加服务。但是当我在core 5上做这个过程的时候,这个过程就完成了。

xwbd5t1u

xwbd5t1u1#

在.NET 6中,Microsoft已删除Startup.cs类。请确保在.NET 6中的Program.cs中配置服务,如下所示:

using Microsoft.AspNetCore.Authentication.Negotiate;

var builder = WebApplication.CreateBuilder(args);

// Add services to the container.
builder.Services.AddControllersWithViews();

builder.Services.AddAuthentication(NegotiateDefaults.AuthenticationScheme)
   .AddNegotiate();

builder.Services.AddAuthorization(options =>
{
    // By default, all incoming requests will be authorized according to the default policy.
    options.FallbackPolicy = options.DefaultPolicy;
});
builder.Services.AddRazorPages();

var app = builder.Build();

// Configure the HTTP request pipeline.
if (!app.Environment.IsDevelopment())
{
    app.UseExceptionHandler("/Home/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.MapControllerRoute(
    name: "default",
    pattern: "{controller=Home}/{action=Index}/{id?}");

app.Run();

相关问题