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.
Question :: Is there a cleaner and trustfull (such as nuget) way to get 32 bit version of these dlls