I'm trying to publish an application made in .net 5 on an IIS server.
Process carried out:
- IIS installation;
- Installation of .NET Runtime 5.0.6 (https://dotnet.microsoft.com/download/dotnet/thank-you/runtime-5.0.6-windows-x64-installer);
- Installation of ASP.NET Core Runtime 5.0.6 (https://dotnet.microsoft.com/download/dotnet/thank-you/runtime-aspnetcore-5.0.6-windows-hosting-bundle-installer);
- New Pool created with .Net version as'Unmanaged code';
- Creation and appointment of a new application in IIS;
Considerations:
- Analyzing this error in other posts, I noticed that the module ASP.NET Core Module v2 that is pointed within the web.config of the project, and that really if access the modules of the IIS server is not available. (https://learn.microsoft.com/en-us/aspnet/core/host-and-deploy/aspnet-core-module?view=aspnetcore-5.0) (Module image that should appear)
About installing ASP.NET Core Runtime 5.0.6, according to other posts should be available at: 'C:\Program Files\IIS\Asp.Net Core Module\V2', but even if the installation is done successfully is not found in this directory.
Is there a configuration/installation that should be done for .Net 5?