Please provide guidance on how to set users which may operate in application with Windows Authentication on ASP.NET Core
In Asp.Net MVC 5 I do it with web.config:
<authorization>
<allow users="domain\foo, domain\bar, domain\baz/>
<deny users="*" />
</authorization>
How implement this with asp.net core?