.Net Core 애플리케이션에서 app.config를 활용하려고 하면 "오류"와 같은 예외가 발생할 수 있습니다. 구성 시스템을 초기화하는 중" 및 "'System.Configuration.InternalConfigurationHost' 유형을 로드할 수 없습니다." 이러한 오류는 'CoreCompat.System.Configuration' 어셈블리에 'get_bundled_machine_config' 메서드 구현이 없기 때문에 발생합니다.
NuGet을 통해 'CoreCompat.System.Configuration' 패키지를 설치했는데도 문제가 지속됩니다. 다음 단계는 이 문제에 대한 해결책을 제공합니다.
<!-- START: This is a buildtime work around for https://github.com/dotnet/corefx/issues/22101 -- --> <Target Name="CopyCustomContent" AfterTargets="AfterBuild"> <Copy SourceFiles="App.config" DestinationFiles="$(OutDir)\testhost.dll.config" /> </Target> <!-- END: This is a buildtime work around for https://github.com/dotnet/corefx/issues/22101 -- -->
위 내용은 내 .NET Core 앱이 app.config를 인식하지 못하는 이유는 무엇이며 어떻게 해결할 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!