我正在使用 ImageResizer.NET 库从 Azure Blob 存储读取图像并调整它们的大小。
为此,我需要安装 AzureReader2 插件并在 web.config 文件中对其进行配置。
我在 Web.Config 中有以下行。
<plugins>
<add name="MvcRoutingShim" />
<add name="PrettyGifs" />
<add name="SimpleFilters" />
<add name="AzureReader2" connectionString="StorageConnectionString" endpoint="http://storageaccount.blob.core.windows.net/" />
</plugins>
当我运行我的 Web 角色时,我收到以下错误:设置必须采用“name=value”的形式。
我错过了什么??