I have the following situation. I am trying to write an Azure function in C#.Net that will read from a Storage Queue (using a trigger), and then look up an entity within an Azure Storage Table.
To create the function I have used Visual Studio 2017 and have created a functions project. The following reference is in the csproj file.
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="1.0.2" />
Then I follow the instructions on how to read, write and query tables as described here. https://learn.microsoft.com/en-us/azure/cosmos-db/table-storage-how-to-use-dotnet
However, when I add go to install one of the required dependencies such as Install-Package Microsoft.Azure.Storage.Common -Version 9.0.0.1-preview I am unable to as there is a conflict between the version of Newtonsoft.Json I need for the Microsoft.NET.Sdk.Functions dependencies as it can only use 9.0.1.
Does anyone know of a solution to resolve this?