I edited my SDK style project to change from TargetFramework netcoreapp3.1 to net472 The project builds without errors However I have following runtime error System.Resources.MissingManifestResourceException HResult=0x80131532 Message=Could not find any resources appropriate for the specified culture or the neutral culture. Make sure "Snap.UI.UnitabCostingMethodControl.resources" was correctly embedded or linked into assembly [...] read more
I have 2 projects-A, B. In A, I have a resource file(FormTexts)that is linked to same resource file in B. In A I have a method that uses this resource file correctly. I can use: ResourceManager rm = new ResourceMananger("MyProjects.A.Resources.FormTexts",Assembly.GetAssembly()); var str=rm.GetStrin("Title"). This works when I run the method()in the [...] read more