Home > Archive > Visual Studio > April 2004 > How to compile an assembly lang program in V studio .net?
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
How to compile an assembly lang program in V studio .net?
|
|
|
| How do you get visual Studio .NET to compile an assembly language program?
For the life of me, I have tried all I know and can guess to no avail. I'd
have thought a simple blank project would work.
When I use ml.exe directly, I can't get the linker to work on the .obj.
When I try to link it by directly invoking the linker, there is a .dll it
can't find. I don't know what path variable the linker's .dlls' paths need
to be in.
Thanks.
Harold Eckstein
| |
|
| Hi,
I hope this information will give you an idea how to accomplish your task:
1. Generate a strong key and extract the public key using the sn.exe command
2. Sign the assembly with the public key and set DelaySigning to TRUE
3. Compile assembly, change the file properties as many times as needed
4. Re-sign the assembly with the strong name key using sn.exe tool
/Nick
|
|
|
|
|