@@ -19,19 +19,25 @@ an FSharp.Core.optdata and FSharp.Core.sigdata, see below for guidance.
1919Binding redirects for your application
2020--------------------------------------
2121
22- The FSharp.Compiler.Service.dll component depends on FSharp.Core 4.3 .0.0. Normally your application will target
22+ The FSharp.Compiler.Service.dll component depends on FSharp.Core 4.4 .0.0. Normally your application will target
2323a later version of FSharp.Core, and you will need a [binding redirect](http://msdn.microsoft.com/en-us/library/7wd6ex19(v=vs.110).aspx) to ensure
24- that FSharp.Core4.3.0.0 forwards to which the final version of FSharp.Core.dll your application uses.
24+ thatother versions of FSharp.Coreforward to the final version of FSharp.Core.dll your application uses.
2525Binding redirect files are normally generated automatically by build tools. If not, you can use one like this
2626(if your tool is called ``HostedCompiler.exe``, the binding redirect file is called ``HostedCompiler.exe.config``)
2727
28+ Some other dependencies may also need to be reconciled and forwarded.
29+
2830 <?xml version="1.0" encoding="utf-8" ?>
2931 <configuration>
3032 <runtime>
3133 <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
3234 <dependentAssembly>
3335 <assemblyIdentity name="FSharp.Core" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/>
34- <bindingRedirect oldVersion="2.0.0.0-4.3.0.0" newVersion="4.3.1.0"/>
36+ <bindingRedirect oldVersion="2.0.0.0-4.4.0.0" newVersion="4.4.1.0"/>
37+ </dependentAssembly>
38+ <dependentAssembly>
39+ <assemblyIdentity name="System.Collections.Immutable" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
40+ <bindingRedirect oldVersion="1.0.0.0-1.2.0.0" newVersion="1.2.1.0" />
3541 </dependentAssembly>
3642 </assemblyBinding>
3743 </runtime>