Hi all, I have a .js file with some basic code that I am compiling into a
dll using jsc.exe. The problem is this generates at version # of 0.0.0.0.
How can I change this? Also, why no support for Jscript.Net in VS2005?
TIA!
[MSFT] - 15 Nov 2005 06:28 GMT
Hello,
To specify the assembly version for .js file, you need to add following
line in the code:
[assembly: AssemblyVersion("1.0.0.1")]
For more inforamtion:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/
frlrfsystemreflectionassemblyversionattributeclasstopic.asp
And I haven't heard more public news about JScript.NET in VS.NET so far.
Maybe we need to wait some days or take a look at J# instead.
Hope this help,
Luke