.Net 표준 라이브러리가 있는데 버전 충돌이 있다고 생각되는 종속 라이브러리 중 하나를 사용하려고 할 때 오류가 발생합니다. 내가 분명히 인터넷 표준 라이브러리에 할 수 없어,.Net 표준 라이브러리에 bindingRedirect 추가
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-10.0.0.0" newVersion="10.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
을하지만, : 이전 스타일 닷넷 클래스 라이브러리에서,이 같은 것을 추가 할 수 있습니다 그래서, 내 질문은, 닷넷 표준 세계에서 이러한 문제를 해결하기위한 전략은 무엇입니까?