0

My requirement is to connect to Windows Azure SQL Database through windows desktop application. Connection should support both SQL Authentication and Active Directory Authentication. For Active Directory Authentication two dlls are required 1. Microsoft.IdentityModel.Clients.ActiveDirectory.dll 2. Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll

I have installed nuget package to get these dlls with command as Install-Package Microsoft.IdentityModel.Clients.ActiveDirectory

As my application is desktop app, we support both 32bit and 64 bit operating systems. To support 32 bit OS, I need 32 bit version of these dlls.

I tried googling and found a set of dlls here but pe deconstructor is showing the platform dll as 64 bit. enter image description here

Question :: Is there a cleaner and trustfull (such as nuget) way to get 32 bit version of these dlls

Vineet Kumar
  • 176
  • 2
  • 11

1 Answers1

1

There is no need to download the specific 32-bit version for this dll. Actually the Microsoft.IdentityModel.Clients.ActiveDirectory.dll is built for any CPU.

We can check it using the CorFlags conversion tool. And it should like this:

enter image description here Then we can refer here fore detail explanation for the result.

Community
  • 1
  • 1
Fei Xue
  • 14,369
  • 1
  • 19
  • 27