Buckminster
(usa Debian)
Enviado em 06/03/2023 - 10:43h
Tentou fazer isso que está no link do StackOverflow:
"Update Visual Studio to to latest version (it matters)
Remove all binding redirects from web.config
Add this to the .csproj file:
<PropertyGroup>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType>
</PropertyGroup>
Build the project
In the bin folder there should be a (WebAppName).dll.config file
It should have redirects in it, copy these to the web.config
Remove the above snipped from the .csproj file
It should work."
Atualize o Visual Studio para a versão mais recente (é importante);
Remova todos os redirecionamentos de ligação do arquivo web.config;
Adicione isso ao arquivo .csproj:
<PropertyGroup>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType>
</PropertyGroup>
Compile o projeto;
Na pasta bin deverá ter um arquivo (nome_da_tua_dll).dll.config;
Deve ter redirecionamentos nele, copie-os para o web.config;
Remova do arquivo .csproj as 4 linhas acima colocadas nele;
Compile novamente para testar e depure e veja se o erro persiste.
E no link do GitHub tem uma outra possível solução no último comentário. Fala para atualizar o .NET.
E Neste link
https://github.com/dotnet/sdk/issues/6832
fala para esvaziar a pasta bin e compilar o projeto, então será gerada uma nova pasta bin, mas não sei se se aplica ao teu caso.
________________________________________________
Always listen the Buck!