gpt4 book ai didi

azure - 错误 System.BadImageFormatException 服务结构

转载 作者:行者123 更新时间:2023-12-04 07:49:22 30 4
gpt4 key购买 nike

问题

我正在构建服务结构应用程序。当我创建一个项目并运行它时,它工作正常。但是当我在 Api Controller 中注入(inject)服务时,它给了我这个错误,我尝试解决它但尚未成功。

错误

System.BadImageFormatExceptionCould not load file or assembly 'dotnet-aspnet-codegenerator-design' or one of its dependencies. An attempt was made to load a program with an incorrect format.

图片

enter image description here

我添加服务

protected override IEnumerable<ServiceInstanceListener> CreateServiceInstanceListeners()
{
return new ServiceInstanceListener[]
{
new ServiceInstanceListener(serviceContext =>
new KestrelCommunicationListener(serviceContext, "ServiceEndpoint", (url, listener) =>
{
ServiceEventSource.Current.ServiceMessage(serviceContext, $"Starting Kestrel on {url}");

return new WebHostBuilder()
.UseKestrel()
.ConfigureServices(
services => services
.AddSingleton<StatelessServiceContext>(serviceContext)
.AddScoped(typeof(ISendMessage), typeof(SendMessage))
)
.UseContentRoot(Directory.GetCurrentDirectory())
.UseStartup<Startup>()
.UseServiceFabricIntegration(listener, ServiceFabricIntegrationOptions.None)
.UseUrls(url)
.Build();
}))
};
}

最佳答案

您的服务或其任何依赖项很可能针对的是 x86 平台。

要解决此问题,您必须强制服务在 x64 上运行和/或将任何 x86 依赖项替换为 x64

如果您正在运行 dotnet-core,请确保也安装了 x64 工具。

您还可以尝试从项目中删除对 Microsoft.VisualStudio.Web.CodeGeneration.Design 的引用,如所述 here

These SO questions might give you more information:

service fabric system badimageformatexception

badimageformatexception when migrating from aspnet core 1.1 to 2.0

关于azure - 错误 System.BadImageFormatException 服务结构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48761014/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com