Versioning of the Javascript dll

S

skarmali

Hi all,
I have a dll compiled using jsc. It contains the javascript to use
the eval function. While shipping this dll, we need to stamp the
file/product version, company name, etc. For the rest of the C# dlls,
we are using assemblyInfo.cs to achieve this purpose. But for this
particular dll, I am not able to get the version information.
Can any one please give some pointers on this?

Thanks in advance,
Shraddha
 
S

skarmali

Hi,
Found the solution for this :)
import System.Reflection;
import System.Runtime.CompilerServices;

[assembly: AssemblyTitle("Title")]
[assembly: AssemblyDescription("Description")]
[assembly: AssemblyProduct("Product")]
[assembly: AssemblyConfiguration("Release")]
[assembly: AssemblyCompany("ABC Corporation")]
[assembly: AssemblyCopyright("Copyright © 2004-2005")]
[assembly: AssemblyTrademark("ABC")]
[assembly: AssemblyInformationalVersion("3.0.1.100")]
[assembly: AssemblyFileVersion("3.0.1.100")]
[assembly: AssemblyDelaySign(false)]
[assembly: AssemblyKeyFile("")]
[assembly: AssemblyKeyName("")]

Regards,
Shraddha
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,432
Messages
2,571,680
Members
48,796
Latest member
Greg L.

Latest Threads

Top