.NET 2.0 中的应用程序资源品牌重塑

发布于 2024-08-07 23:08:44 字数 243 浏览 8 评论 0原文

我即将开始用 .NET 2.0 (C#) 编写一个工具,该工具需要重新命名才能出售给其他公司使用。我们将利用其他公司的资源在内部编译该工具,这样他们就无法获得源代码,而只能获得生成的输出。

由于品牌重塑将使用相同的默认语言,因此如何管理同一语言集的多个资源,而不需要做一些低俗的事情,例如在构建时用脚本交换 resx 文件,或者甚至更肮脏(并且更容易出错)的事情,例如使用客户 A 为 en-US,客户 B 为 en-CA,客户 C 为 en-GB,等等。

I'm about to start writing a tool in .NET 2.0 (C#), and the tool needs to be re-brandable to be sold for use by other companies. We'll compile the tool in house, with other company's resources, so they don't get the source, just the generated output.

Since the re-branding will use the same default language, how do you manage multiple resources for the same language set without doing something sleazy like swapping out resx files with scripts at build time, or something even sleazier (and more error prone) like using en-US for customer A, en-CA for customer B, en-GB for customer C, etc.

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

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

发布评论

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

评论(3

深居我梦 2024-08-14 23:08:44

我们在项目中发现,最简单的途径是将品牌放在自己的 DLL 中,然后通过反射动态加载。如果需要,有两种明显的方法可以本地化任何品牌:

  1. 将品牌 DLL 替换为已本地化的另一个品牌 DLL
  2. 使用 .NET 支持的附属程序集技术

在我看来,选项 1 更容易,但两者都是可行的。当然,还有其他本地化方法。

We found on our project that the simplest route was to have the branding in its own DLL which is then loaded dynamically through reflection. If required, there are two obvious approaches to localizing any branding:

  1. Replace the branding DLL with another that has been localized
  2. Use the satellite assembly technique supported by .NET

Option 1 is much easier, in my opinion but both are feasible. Of course, there are other approaches to localization.

徒留西风 2024-08-14 23:08:44

我决定采用的路线是使用 TextOverrides 类。此类公开了一系列属性,例如:

public static string ProductName
{
  get
  {
    #if <companyNameA>
      return Properties.Resources.ProductName_CompanyNameA;
    #elif <companyNameB>
      return Properties.Resources.ProductName_CompanyNameB;
    #else
      return Properties.Resources.ProductName;
    #endif
  }
}

这仅在覆盖文本项的数量保持较小的情况下才可行。

The route I've decided to go is to have an TextOverrides class. This class exposes a bunch of properties such as:

public static string ProductName
{
  get
  {
    #if <companyNameA>
      return Properties.Resources.ProductName_CompanyNameA;
    #elif <companyNameB>
      return Properties.Resources.ProductName_CompanyNameB;
    #else
      return Properties.Resources.ProductName;
    #endif
  }
}

This is only feasible if the number of overriden text items remains small.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文