Need explanation

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I thought that this code means that

<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="ArlDbAccess"
publicKeyToken="b482d26a27af5b2d"
culture="neutral" />
<bindingRedirect oldVersion="17.0.0.2"
newVersion="17.0.0.2"/>
</dependentAssembly>
</assemblyBinding>
</runtime>

My .Net c# app must work with ArlDbAccess assembly version 17.0.0.2
and if I don't have version 17.0.0.2 installed the app shouldn't work ... so I thought so but it is not correct.

I don't have V17.0.0.2 in my server and I have only V17.0.0.1 but my app is working just fine.

what am I missing

Tanks,
Avi
 
Back
Top