web-dev-qa-db-fra.com

Impossible de charger le hostfxr.dll après l'installation de net core

N'importe qui a ce problème, je change de PC et essaye d'installer le framework net core mais le code vs renvoie ces informations quand j'ai essayé d'écrire dontet --info

Failed to load the dll from [C:\Program 
Files\dotnet\Host\fxr\2.1.0\hostfxr.dll], HRESULT: 0x80070057
The library hostfxr.dll was found, but loading it from C:\Program 
Files\dotnet\Host\fxr\2.1.0\hostfxr.dll failed
- Installing .NET Core prerequisites might help resolve this problem.
 http://go.Microsoft.com/fwlink/?LinkID=798306&clcid=0x409
9
Tom Karnaski

L'installation de cette mise à jour résoudra le problème pour Windows 7 :

https://www.Microsoft.com/en-us/download/details.aspx?id=26767

15
Braytiner

J'ai rencontré la même erreur et j'ai vérifié ma classe d'API Web Program.cs Et j'ai constaté que: .UseIISIntegration() est manquant. Je l'ai ajouté et le problème a été résolu.

public class Program
{
    public static void Main(string[] args)
    {
        CreateWebHostBuilder(args).Build().Run();
    }

    public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
        WebHost.CreateDefaultBuilder(args).UseStartup<Startup>().UseIISIntegration();
}
4
Mohammed Osman