Skip to content

Commit faa5f2c

Browse files
committed
Fix assembly redirection and update version to 1.0.0-beta.99
1 parent d252d6e commit faa5f2c

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

src/Azure.Functions.Cli/App.config

+5-1
Original file line numberDiff line numberDiff line change
@@ -195,8 +195,12 @@
195195
<assemblyIdentity name="System.Reactive.Core" publicKeyToken="94bc3704cddfc263" culture="neutral" />
196196
<bindingRedirect oldVersion="0.0.0.0-3.0.3000.0" newVersion="3.0.3000.0" />
197197
</dependentAssembly>
198+
<dependentAssembly>
199+
<assemblyIdentity name="System.Security.Cryptography.Algorithms" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
200+
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
201+
</dependentAssembly>
198202
</assemblyBinding>
199-
</runtime>
203+
</runtime>
200204
<system.serviceModel>
201205
<extensions>
202206
<!-- In this extension section we are introducing all known service bus extensions. User can remove the ones they don't need. -->

src/Azure.Functions.Cli/Common/Constants.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ internal static class Constants
66
public const string FunctionsStorageAccountNamePrefix = "AzureFunctions";
77
public const string StorageAccountArmType = "Microsoft.Storage/storageAccounts";
88
public const string FunctionAppArmKind = "functionapp";
9-
public const string CliVersion = "1.0.0-beta.98";
9+
public const string CliVersion = "1.0.0-beta.99";
1010
public const string CliDebug = "CLI_DEBUG";
1111
public const string DefaultSqlProviderName = "System.Data.SqlClient";
1212

src/Azure.Functions.Cli/npm/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "azure-functions-core-tools",
3-
"version": "1.0.0-beta.98",
3+
"version": "1.0.0-beta.99",
44
"description": "Azure Functions Core Tools",
55
"scripts": { },
66
"author": "Microsoft",

0 commit comments

Comments
 (0)