mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-24 06:56:27 +00:00
Enable user secrets
This commit is contained in:
parent
b2884debcd
commit
f105fcbd0e
@ -21,6 +21,10 @@ namespace Example.ASP
|
|||||||
.ConfigureWebHostDefaults(webBuilder =>
|
.ConfigureWebHostDefaults(webBuilder =>
|
||||||
{
|
{
|
||||||
webBuilder.UseStartup<Startup>();
|
webBuilder.UseStartup<Startup>();
|
||||||
|
})
|
||||||
|
.ConfigureAppConfiguration((httpContext, builder) =>
|
||||||
|
{
|
||||||
|
builder.AddUserSecrets<Program>();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user