我有两个ASP。NET Web项目(ProjectA和projecb)。当ProjectA中的类正在实例化ProjectB中的一个类时,它使用了一个资源文件Blah。resx,我得到这个错误:
一个System.Resources类型的异常。mscorlib.dll中出现了MissingManifestResourceException',但在用户代码中没有处理。
无法找到适用于指定区域性或中性区域性的任何资源。确保“资源。等等。”资源“正确嵌入或链接到程序集”App_GlobalResources。Sn_flri6”,或者所有所需的附属程序集都是可加载的并具有全符号。
是什么导致的?
在微软的网站上有一篇关于http://support.microsoft.com/kb/318603的文章,它建议:
要解决此问题,请移动所有其他类定义,使它们出现在表单的类定义之后。
这是一个Windows窗体项目的解决方案,我不确定这是否也适用于Web项目。
我只是在WPF项目中碰到了同样的异常。问题发生在我们最近移动到另一个名称空间(ProblemAssembly)的程序集中。支持ProblemAssembly.Controls)。试图从程序集中存在的第二个资源文件访问资源时发生异常。
事实证明,附加的资源文件没有正确地将引用从旧的名称空间名称移动到新的名称空间名称。
在资源文件的designer.cs中,有一个静态属性用于获取ResourceManager。在该getter中,字符串仍然引用旧的名称空间。一旦将其纠正为新的名称空间,问题就解决了:
global::System.Resources.ResourceManager temp =
new global::System.Resources.ResourceManager(
"ProblemAssembly.Support.Properties.Stuff", typeof(Stuff).Assembly);
本来应该是:
global::System.Resources.ResourceManager temp =
new global::System.Resources.ResourceManager(
"ProblemAssembly.Controls.Properties.Stuff", typeof(Stuff).Assembly);
谢谢@CFinck !
只是给其他人添加一个提示:我用这个改变了ResourceManager行:
New Global.System.Resources.ResourceManager(Reflection.Assembly.GetCallingAssembly.GetName.Name & ".CommonNameOf.Resources", Reflection.Assembly.GetCallingAssembly())
我在vb.net,但我认为在c#中唯一的区别是+而不是&连接字符串。
这样,我就可以在两个共享资源的类似项目中使用相同的链接程序集文件。
对我来说,问题是将.resx文件和相关联的.cs文件从一个项目复制到另一个项目。两个项目都有相同的名称空间,所以这不是问题。
当我在解决方案资源管理器中注意到原始项目中的.resx文件依赖于.cs文件时,终于解决了这个问题:
MyResource.cs
|_ MyResource.resx
而在复制的项目中。cs文件依赖于。resx文件:
MyResource.resx
|_ MyResource.cs
原来在第二个项目中,.resx文件被设置为自动生成.cs文件。自动生成的.cs文件覆盖了从原始项目复制的.cs文件。
要修复此问题,请编辑复制项目中每个.resx文件的属性。自定义工具属性将被设置为类似ResXFileCodeGenerator的东西。清除.resx文件的自定义工具属性。您将需要从原始项目中重新复制.cs文件,因为它将被自动生成的文件覆盖。
This can be caused by mismatched namespaces. The second from top answer (Sibi Elango's) says to right-click the resx file, and change Build option to EmbeddedResource, but I had already done that and still had the error. The top answer (CFinck's) notes a way of fixing this via manually editing files, however, I had this problem in MonoDevelop, and had to set the default namespace to the same as the cs file which was calling for the resource (the file which contained code such as the code below)...
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
通过GUI设置默认名称空间后,上面的代码行不再引起异常。
我通过转到保存资源文件的项目,向下滚动到它的ItemGroup,并添加与编译器期望的路径对应的逻辑名称来解决这个问题。
我的EmbeddedResource是这样的:
<ItemGroup>
<EmbeddedResource Update="Properties\TextResources.resx">
<Generator>PublicResXFileCodeGenerator</Generator>
<LastGenOutput>TextResources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
现在看起来是这样的
<ItemGroup>
<EmbeddedResource Update="Properties\TextResources.resx">
<Generator>PublicResXFileCodeGenerator</Generator>
<LastGenOutput>TextResources.Designer.cs</LastGenOutput>
<LogicalName>MyProject.Properties.Resources.resources</LogicalName>
</EmbeddedResource>
</ItemGroup>
对我来说是这样的。在MyStrings.Designer.cs文件中:
global::System.Resources.ResourceManager temp =
new global::System.Resources.ResourceManager(
"MyApplication.MyProject", typeof(MyStrings).Assembly);
我以为MyApplication。MyProject引用类的命名空间,而不是文件的目录。我把文件放在一个名为Resources的子目录中,但名称空间没有反映这一点。
我把它改成
global::System.Resources.ResourceManager temp =
new global::System.Resources.ResourceManager(
"MyApplication.MyProject.Resources", typeof(MyStrings).Assembly);
它成功了!(我甚至不需要更新名称空间!)