About satellite Assemblies

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi al
I am writing an application that forms .resource or .resx file of image files in a directory.Now i want to add a small functionality to this application ie to compile the resource files to form satellite assemblies.How can i compile the resource file to form satellite assembly from my application
 
Just as you compile a normal assembly (using csc.exe or al.exe).

For satellites using al.exe is usually enough.

You just need to follow the resource naming guidelines at MSDN to get your
localized resources loaded.

MyAssembly.dll
\jp-JP
MyAssembly.resources.dll
MyResourceFile1.jp-JP.resources
MyResourceFile2.jp-JP.resources


sivaraj said:
Hi all
I am writing an application that forms .resource or .resx file of image
files in a directory.Now i want to add a small functionality to this
application ie to compile the resource files to form satellite
assemblies.How can i compile the resource file to form satellite assembly
from my application
 
Back
Top