How to create a strong name dll from jscript.

  • Thread starter Thread starter Tim Marsden
  • Start date Start date
T

Tim Marsden

Hello

I have written a script (using notepad):

class ExpressionEvaluator
{
function Evaluate(Expression : String)
{
return eval(Expression);
}
}

I use the jsc.exe to create a dll which I use in my vb.net project.
I need to give the dll a strong name.
I have tried al.exe but can't get it to work.

(I do not know any jscript at all)

Any ideas.

Tim
 
I think I figured it out.

Create the dll using jsc.exe
Use ildasm to ceate a .il file
Use ilasm to recreate the .dll using the /key option to add my key.

Tim
 
Back
Top