I have a library with a Blazor component that uses this library.
When I open a page with this component in my service via navigation, it works fine. But when I reload the page I catch the exception:
'AKSoftware.Localization.MultiLanguages.Blazor, Version=6.0.1.0, Culture=neutral, PublicKeyToken=null'. The system cannot find the file specified.
it happens on the component initialization where is the only one line:
Lang.InitLocalizedComponent(this);
Both the library and the service updated to 6.1.0. I have nothing with the version 6.0.1.
There's also the second case when it happens.
All the pages except account managing use InteractiveWebAssemblyRenderMode with prerender. But account managing pages use @attribute [ExcludeFromInteractiveRouting].
When I navigate from the page with the problematic component to a page that doesn't use the interactive mode, and try to return, I always catch an exception.
But there's no problem in navigation between the pages using interactive mode.
So far, I copied my component to the project. In this case it works fine.
I have a library with a Blazor component that uses this library.
When I open a page with this component in my service via navigation, it works fine. But when I reload the page I catch the exception:
'AKSoftware.Localization.MultiLanguages.Blazor, Version=6.0.1.0, Culture=neutral, PublicKeyToken=null'. The system cannot find the file specified.it happens on the component initialization where is the only one line:
Lang.InitLocalizedComponent(this);Both the library and the service updated to
6.1.0. I have nothing with the version6.0.1.There's also the second case when it happens.
All the pages except account managing use InteractiveWebAssemblyRenderMode with prerender. But account managing pages use
@attribute [ExcludeFromInteractiveRouting].When I navigate from the page with the problematic component to a page that doesn't use the interactive mode, and try to return, I always catch an exception.
But there's no problem in navigation between the pages using interactive mode.
So far, I copied my component to the project. In this case it works fine.