2016-01-15 14 views

cevap

12

Ünite test projenizle ilişkili bir app.config dosyasına bir montaj yönlendirmesi eklemeniz gerekir. Bunun gibi bir şey yapmalıdır:

<?xml version="1.0" encoding="utf-8"?> 
<configuration> 
    <runtime> 
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> 
     <dependentAssembly> 
     <assemblyIdentity name="FSharp.Core" 
          publicKeyToken="b03f5f7f11d50a3a" 
          culture="neutral"/> 
     <bindingRedirect oldVersion="4.3.1.0" 
         newVersion="4.4.0.0"/> 
     </dependentAssembly> 
    </assemblyBinding> 
    </runtime> 
</configuration> 
İlgili konular