I started a GitHub repo on my PC.
I have loaded the MaterialDesign NuGet package.
Now I switched to the laptop, downloaded the repo and wanted to continue working.
To do this, I've restored the packages to NuGet, but I still receive the error message:
SeverityCodeDescriptionProjectFileLineSuppression State
WarningAssembly 'MaterialDesignThemes.Wpf' is not referenced by this projectGeneratorApp.xaml9
How can I solve this?
You need to add a reference to the Assembly MaterialDesignThemes.Wpf. This is stated in the error message. This means that you have to manually add this assembly to every computer on which you want to develop the project. Because the assembly may be located on PC 1 in a different location than on PC 2. Especially if both systems have a different architecture (32 and 64 bit).
But since it's just a warning, you can suppress it too. Right click on the message and select "Supress Warning" or "Suppress Warning". There you can still decide whether it should be suppressed in the code or elsewhere.