找不到任何适合指定文化或中立文化的资源。 - 资源文件共享问题

发布于 2024-09-24 10:30:59 字数 548 浏览 5 评论 0原文

我有一个普通的班级图书馆。最近,我本地化了这个类库。

我还有另一个 Silverlight 类库,它基本上是一个链接文件项目

<Link>Reports\Reports.cs</Link>

其中,我包含了与对其他文件所做的相同的 resx 文件作为链接引用。运行时,抛出以下异常。

Could not find any resources appropriate for the specified culture or the neutral culture.  
Make sure "BCL.Resources.BCLNamespace.resources" was correctly embedded
 or linked into assembly "SilverlightBCL" at compile time, or that all the 
 satellite assemblies required are loadable and fully signed.

I have a normal class library. Recently, I localized this class library.

I also have another Silverlight class library, Which is basically a linked file project

<Link>Reports\Reports.cs</Link>

In that, I have included the same resx file as link reference as I done for other files. While running, it throws the following exception.

Could not find any resources appropriate for the specified culture or the neutral culture.  
Make sure "BCL.Resources.BCLNamespace.resources" was correctly embedded
 or linked into assembly "SilverlightBCL" at compile time, or that all the 
 satellite assemblies required are loadable and fully signed.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

无名指的心愿 2024-10-01 10:30:59

将 Assembly2 (SilverlightBCL) 中的默认命名空间保持与 Assembly1 (BCL) 相同可以修复此问题。
谢谢大家:)

Keeping the Default namespace in Assembly2 (SilverlightBCL) as same as Assembly1 (BCL) fixes this issue.
Thanks all :)

爱冒险 2024-10-01 10:30:59

在 [Filename].Designer.cs 中,它可能是以下之一:

  • 命名空间

    命名空间 Company.Dept.MyApp.Resource {
        // 这里是你的代码。
    }
    
  • ResourceManager

    new global::System.Resources.ResourceManager(
        “公司.部门.MyApp.资源.模板”, 
        typeof(模板).Assembly);
    

In the [Filename].Designer.cs , it could be one of the following:

  • the Namespace

    namespace Company.Dept.MyApp.Resource {
        // Your code here.
    }
    
  • ResourceManager

    new global::System.Resources.ResourceManager(
        "Company.Dept.MyApp.Resource.Templates", 
        typeof(Templates).Assembly);
    
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文