Windows error 0x80131532, -2146233038

Detailed Error Information

COR_E_MISSINGMANIFESTRESOURCE[1]

Message"An expected resource in the assembly manifest was missing."
Comment An expected resource in the assembly manifest was missing.

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode19 (0x013)
NameFACILITY_URT[2][3]
DescriptionThe source of the error code is .NET CLR.[2][3]
Error Code5426 (0x1532)

Questions

0votes
1answer

System.Resources.MissingManifestResourceException on rolling sdk project from .netcore3.1 to framework 4.7.2

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
c#
.net
visual-studio
bindingnavigator
0votes
0answers

Cannot access a Resource file from a Project with External Dependancies

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
c#
resources

Comments

Leave a comment

(plain text only)

Sources

  1. https://github.com/dotnet/coreclr/blob/v1.1.0/src/inc/corerror.xml
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx
  3. winerror.h from Windows SDK 10.0.14393.0

User contributions licensed under CC BY-SA 3.0