skip to Main Content

VSIX cannot find referenced assembly from included package, VS 2017 – Asp.net

I have written a VSIX that fails in VS 2017 System.IO.FileNotFoundException: Could not load file or assembly 'System.Numerics.Vectors, Version=4.1.4.0 Yet the csproj includes the package for that assembly <PackageReference Include="System.Numerics.Vectors"> <Version>4.5.0</Version> </PackageReference> and I have verified that System.Numerics.Vectors, Version=4.1.4.0 lands…

VIEW QUESTION

error: Azure.Messaging.EventHubs: The path to an Event Hub may be specified as part of the connection string or as a separate value, but not both

At first I upgraded the package "Microsoft.Azure.Functions.Worker.Extensions.EventHubs" from version 4.3.0 to 5.1.0. and I upgraded from the deprecated Microsoft.Azure.EventHubs package to Azure.Messaging.EventHubs. Then I run the C# function that return the error: 'Azure.Messaging.EventHubs: The path to an Event Hub may…

VIEW QUESTION

Unable to use string-based methods on a string property inside an Azure storage table query lambda

While querying an Azure storage table I get an exception. Here is my query: tableClient.QueryAsync<Resource>(resource => resource.PartitionKey == projectId.ToString() && String.Equals(resource.FullName, fullName, StringComparison.InvariantCultureIgnoreCase)); resource.FullName and fullName are both of type string. But this incurs the exception... Incorrect number of arguments…

VIEW QUESTION
Back To Top
Search