I am developing Ap.Net Code web application, I am using the below setting in the csproj file. When I run the application using visual studio I can see dotnet.exe running in the task manager, but it should be w3wp.exe or iisexpress.exe in case of InProcess hosting. So what could be the reason behind it?
<AspNetCoreHostingModel>InProcess</AspNetCoreHostingModel>
CSProj file:
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp2.0</TargetFramework>
<AspNetCoreHostingModel>InProcess</AspNetCoreHostingModel>
</PropertyGroup>
<ItemGroup>
<Folder Include="wwwroot\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.0.8" />
</ItemGroup>
</Project>