How to create a strong name dll from jscript.

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
 
T

Tim Marsden

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
 

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

Similar Threads

Query in register .Net dll 3
How to Strong name a dll 1
Strong Name a compiled assembly? 4
strong name 1
.NET in VBA 2
Strong Name Assembly 1
Strong Name Assemby 1
WHLLAPI.DLL : Can't get a pointer to DLL 0

Top