When you first run an ASP.NET Core website, Visual Studio adds an entry to .vs\config\applicationhost.config
. It sets the site name to the name of the project. For example:
<site name="MyWebProject" id="2">
I wish it used the assembly name rather than the project name. In any case, how do you override it to use a name of your choosing?