Replies: 2 comments
-
@Rodien In your project, there should be an if (_module == null)
{
_ = await ImportPrerequisiteModuleAsync("https://unpkg.com/@microsoft/[email protected]/dist/MicrosoftTeams.min.js");
_module = await _jsRuntime.InvokeAsync<IJSObjectReference>("import", ModulePath).AsTask();
} You can modify that. Just note that if change versions and something in the MicrosoftTeams JS library has changed, the deserealization of the responses may not work because the classes in the |
Beta Was this translation helpful? Give feedback.
-
Ah, okay. Thank you! I am facing a problem with a blazoer server application (Teams app) where the user [email protected].* and taskmodule, as well as the graph toolkit components, are not working. However, they do work in the app that uses 2.7.1. So, I want to change 2.4.* to 2.7.1. |
Beta Was this translation helpful? Give feedback.
-
Hi,
I have a question about the teamsJs file that is being used. I am running Blazor Server and I would like to use another version of MicrosoftTeams.min.js. How can I make this change?
I am using Blazor Server.
Beta Was this translation helpful? Give feedback.
All reactions