Azure KeyVault nuget package issues

1

When I installing Azure.KeyVault package version 3 alpha, I'm getting the following runtime exception:

Could not load file or assembly 'Microsoft.Azure.KeyVault, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. Could not find or load a specific file. (Exception from HRESULT: 0x80131621)

Downgrading this package to latest stable 2.3.2 causes another error:

enter image description here

Here is my package list with dependencies:

enter image description here

Any ideas or workaround on this?

azure
.net-core
nuget
azure-functions
azure-keyvault
asked on Stack Overflow May 10, 2018 by BumbleBee • edited May 10, 2018 by huysmania

1 Answer

0

Seems like the problem was inside v2 runtime: https://github.com/Azure/azure-functions-host/issues/2854

My decision was to turn roll back to v1 Functions, cause I found another issues during the KeyVault implementation by this article: https://docs.microsoft.com/en-us/azure/app-service/app-service-managed-service-identity

Here is the issue: https://github.com/Azure/azure-functions-host/issues/2852

answered on Stack Overflow May 19, 2018 by BumbleBee

User contributions licensed under CC BY-SA 3.0