-
Notifications
You must be signed in to change notification settings - Fork 762
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Static resources declared in App.xaml are not applied #47
Comments
This is a known issue for WASM, this works for iOS and Android. The best workaround for now is to declare it in a merged resource dictionary. |
I reproduced the problem and I found the cause... it's very far from the reported bug. The actual causeThe Wasm version of MvvmLight will use the netstandard1.0 version of the package and the IoC in this version won't implement the Since the project What is happening in the app
I will close this bug as not related to Uno directly (the real issue has been created in |
Ooohhh... by the way, to find this problem I found those 2 assemblies must be removed from linker in the <assembly fullname="UnoTest.Wasm" />
<assembly fullname="GalaSoft.MvvmLight.Platform" /> |
|
When I said removed from linker, it means those lines must be added to the config file ;-) Sorry for the confusion. |
Aaa, OK :) Thanks. |
…tream-2 Upstream update
Fixed UnoImage on Android
Steps to reproduce:
Result:
6. Run UnoTest.UWP project (right click, start new instance) - clicking the button will increase the counter - correct behavior after change.
7. Run UnoTest.Web project (right click, start new instance) - clicking the button will not increase the counter - bad behavior after change.
Expected result:
After running UnoTest.Web app, clicking the button should increase the counter.
The text was updated successfully, but these errors were encountered: