You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I'm getting a strange error in the negotiate function after trying to change the packages in the sample (simple chat) application. (Removed the project reference - and used the nuget package)
Updating : Microsoft.Net.Sdk.Functions to any version starting with 3..
and the signalrservice extension to version 1.10
I have tried adding System.IdentityModel.Tokens.Jwt ( many different versions of the nuget package )
I get : System.Private.CoreLib: Exception while executing function: negotiate. Microsoft.Azure.WebJobs.Host: Exception binding parameter 'connectionInfo'. Microsoft.Azure.WebJobs.Extensions.SignalRService: Could not load file or assembly 'System.IdentityModel.Tokens.Jwt, Version=5.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified. System.Private.CoreLib: Could not load the specified file.
The text was updated successfully, but these errors were encountered:
@billbridges6, it seems after Microsoft.Net.Sdk.Functions3.* , some packages have break changes, you need to install Microsoft.Azure.WebJobs.Extensions.Http3.* as well so that HttpTriggerAttribute can be resolved.
And about System.IdentityModel.Tokens.Jwt, you don't have to install yourself cause our dependency Microsoft.Azure.SignalR already has it. Sorry for the late response and let us know if you can work.
Hi, I'm getting a strange error in the negotiate function after trying to change the packages in the sample (simple chat) application. (Removed the project reference - and used the nuget package)
Updating : Microsoft.Net.Sdk.Functions to any version starting with 3..
and the signalrservice extension to version 1.10
I have tried adding System.IdentityModel.Tokens.Jwt ( many different versions of the nuget package )
I get : System.Private.CoreLib: Exception while executing function: negotiate. Microsoft.Azure.WebJobs.Host: Exception binding parameter 'connectionInfo'. Microsoft.Azure.WebJobs.Extensions.SignalRService: Could not load file or assembly 'System.IdentityModel.Tokens.Jwt, Version=5.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. The system cannot find the file specified. System.Private.CoreLib: Could not load the specified file.
The text was updated successfully, but these errors were encountered: