使用ResGen&amp ;;强名称卫星组件AL具有多个resx / resources文件

时间:2012-03-29 16:24:35

标签: resources strongname satellite-assembly resgen al.exe

无论出于何种原因,在将多个.resources文件编译为单个附属程序集(.dll)时,资源将不会显示。编译单个资源将起作用。以下是我使用的步骤......

  1. 我们有一个名为“Report Viewer”的项目。该项目使用密钥MySnKey.snk通过Properties>进行签名。签名>对程序集进行签名,选择一个强名称密钥文件:MySnKey.snk。
  2. 所有表单已更新为Localizable = True
  3. 我们将所有resx文件处理成德语de-DE。只有两个resx:MainForm.resx(项目根目录)和Resources.resx(属性目录)。
  4. 我有一个MainForm.de-DE.resx和Resources.de-DE.resx的文件夹,它们是这些文件的翻译版本。
  5. 使用resgen,

    > “C:\ Program Files \ Microsoft SDKs \ Windows \ v6.0A \ bin \ ResGen”/编译Resources.de-DE.resx ReportViewer.Resources.de-DE.resources

    > “C:\ Program Files文件\微软的SDK \的Windows \ v6.0A \ BIN \ RESGEN”/编译MainForm.de-DE.resx ReportViewer.MainForm.de-DE.resources

  6. 这会创建相应的.resources文件。现在要链接,我使用AL.exe:

    > “C:\ Program Files文件\微软的SDK \的Windows \ v6.0A \ BIN \ AL”/ T:LIB /embed:ReportViewer.MainForm.de-DE.resources,ReportViewer.Resources.de-DE.resources /文化:德-DE /out:ReportViewer.resources.dll /template:../../../Output/ReportViewer/bin/Debug/ReportViewer.exe /密钥文件:../ MySnKey.snk

    这会创建一个ReportViewer.resources.dll文件。如果我将它放入相应的子文件夹de-DE> ReportViewer.resources.dll,没有运气。在Program.cs中,在调用Run之前,我有

    Thread.CurrentThread.CurrentUICulture = new CultureInfo("de-DE");
    

    如果,我只包括像

    这样的MainForm

    > “C:\ Program Files文件\微软的SDK \的Windows \ v6.0A \ BIN \ AL”/ T:LIB /embed:ReportViewer.MainForm.de-DE.resources /文化:DE-DE /out:ReportViewer.resources.dll /template:../../../Output/ReportViewer/bin/Debug/ReportViewer.exe / keyfile:../ MySnKey.snk

    显示相应的资源。

    这让我很困惑。如果我将.resx文件添加到解决方案并进行编译,则输出dll可以正常工作,但我们正试图避免将这些卫星翻译带入解决方案。

    没有错误产生,文件被创建,所以我迷失了我不做的事情。

    非常感谢任何帮助。我比较了在运行AL.exe时将文件添加到输出文件的输出dll之间的差异,它们都包含所有翻译。

    编辑以包含解决方案,因为我无法回答问题

    显然我对嵌入选项和它的用法感到困惑。要正确使用AL.exe实用程序,我必须使用:

    > "C:\Program Files\Microsoft SDKs\Windows\v6.0A\bin\ResGen" Resources.de-DE.resx ReportViewer.Properties.Resources.de-DE.resources
    

    请注意,上面添加了Properties命名空间。我之前没有这样做过。

    > "C:\Program Files\Microsoft SDKs\Windows\v6.0A\bin\ResGen" MainForm.de-DE.resx  ReportViewer.MainForm.de-DE.resources
    

    请注意,由于MainForm只是在ReportViewer名称空间中,因此未添加任何属性名称空间。

    > "C:\Program Files\Microsoft SDKs\Windows\v6.0A\bin\AL" 
    /t:lib
    /embed:ReportViewer.Properties.Resources.de-DE.resources
    /embed:ReportViewer.MainForm.de-DE.resources 
    /culture:de-DE /out:ReportViewer.resources.dll /template:../../../Output/ReportViewer/bin/Debug/ReportViewer.exe /keyfile:../MySnKey.snk
    

    请注意,此行中有多个/ embed项。我正在使用逗号,它重命名内部并不是我想要的。在文件之间提供空间会产生(看似)无关的错误。有关优秀文章,请参阅http://ondotnet.com/pub/a/dotnet/2002/10/14/local2.htm?page=2

    为完整起见,编写此脚本的另一种方法是

    > "C:\Program Files\Microsoft SDKs\Windows\v6.0A\bin\ResGen" Resources.de-DE.resx
    

    注意这里没有重命名,输出只是Resources.de-DE.resources

    > "C:\Program Files\Microsoft SDKs\Windows\v6.0A\bin\ResGen" MainForm.de-DE.resx
    

    注意这里没有重命名,输出只是MainForm.de-DE.resources

    > "C:\Program Files\Microsoft SDKs\Windows\v6.0A\bin\AL" /t:lib
    /embed:Resources.de-DE.resources,ReportViewer.Properties.Resources.de-DE.resources
    /embed:MainForm.de-DE.resources,ReportViewer.MainForm.de-DE.resources
    /culture:de-DE
    /out:ReportViewer.resources.dll /template:../../../Output/ReportViewer/bin/Debug/ReportViewer.exe /keyfile:../MySnKey.snk
    

    请注意,重命名是在嵌入选项中使用逗号后完成的。第一个参数是文件名(.resources文件),逗号后面是完全限定名称(namespace.class.xx-XX.resources)。

1 个答案:

答案 0 :(得分:0)

在我知道我可以在这里回答之前回复帖子。