I am trying to create satellite assemblies using Al.exe.
To create an assembly from a .ressources
file I am executing the following command:
al.exe /c:<culture> /out:<output dll name> /embedresource: <name of the .resources file> /fileversion:3.1.5.0 /productv:3.1.5.0 /keyf:Key.snk
First question:
Do the fileversion, productv and keyf must be the same as the file version, product version and key of my deployed application?
Second question:
Why when I deploy the generated DLLs to the GAC the version column become 0.0.0.0 ? But when I view their properties in the GAC why the file version and the product version are correct and the version field is 0.0.0.0?
Thank you very much.