Hi All,
I am developing a .NET 4.8 application using Visual Studio. The application pulls some data using the component integration SDK, and the intent is to then process and save some of this data to Azure Blob storage.
I can get this functionality to work independently, but the moment I install Nuget package MilestoneSystems.VideoOS.Platform.SDK version 23.3.2 in my project, I get the following exception during runtime:
System.IO.FileLoadException: ‘Could not load file or assembly ‘Azure.Core, Version=1.39.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8’ or one of its dependencies. The located assembly’s manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)’
In my Bin directory I can see that the Azure.Core.dll post installation of Milestone SDK becomes version 1.25, when this should be 1.40 (as it is prior to installation of Milestone SDK).
Why does installing the Milestone SDK NuGet package force a downgrade of Azure.Core, and how would I resolve this?
Thanks!