Azure.ConfigurationManager与.Net Core兼容吗?

时间:2016-10-04 13:49:32

标签: azure azure-storage azure-storage-blobs

我正在使用.Net Core v1.0,并希望在我的应用程序中使用Azure表存储。我通过NuGet成功安装了Azure.Storage包,但是当我安装Azure.ConfigurationManager包时,我在执行dotnet恢复时遇到此错误:

Package Microsoft.WindowsAzure.ConfigurationManager 3.2.1 is not compatible with netcoreapp1.0 (.NETCoreApp,Version=v1.0).
Package Microsoft.WindowsAzure.ConfigurationManager 3.2.1 supports: net40 (.NETFramework,Version=v4.0)
    One or more packages are incompatible with .NETCoreApp,Version=v1.0.

有解决方法吗?我可以在没有ConfigurationManager的情况下使用Azure表存储吗?

谢谢!

编辑(2016年10月4日):
您似乎可以在没有ConfigurationManager的情况下使用Azure表存储,但是您将无法在运行时访问和修改应用程序设置。 Storage Configure Connection String - Parsing a Connection String

1 个答案:

答案 0 :(得分:15)

Azure.ConfigurationManager与.NET Core不兼容。

ConfigurationManager是可选的,因此不需要使用Azure表存储。另外,您可以使用.NET Framework ConfigurationManager Class

作为替代品

Storage Configure Connection String - Parsing a Connection String