G
George Durzi
I'm trying to put an assembly into the GAC. The assembly is called
Common.Mail. I've done the following:
- Create a strong name for Common.Mail:
- From command prompt:
cd Program Files\Microsoft Visual Studio .NET 2003\SDK\v1.1\Bin
sn -k Common.Mail.snk
- Link Assembly at command line using Assembly Linker tool.
- From command prompt:
cd WINDOWS\Microsoft.NET\Framework\v1.1.4322
Having trouble with the al.exe part. The help documentation shows the
following:
al /out:<assembly name> <module name> /keyfile:<file name>
So :
al /out:Common.Mail.dll <module name> /keyfile:Common.Mail.snk
What do I put for <module name>. My project has one class called Message.cs
If I put Message.cs as module name it doesn't work..
tips?
Common.Mail. I've done the following:
- Create a strong name for Common.Mail:
- From command prompt:
cd Program Files\Microsoft Visual Studio .NET 2003\SDK\v1.1\Bin
sn -k Common.Mail.snk
- Link Assembly at command line using Assembly Linker tool.
- From command prompt:
cd WINDOWS\Microsoft.NET\Framework\v1.1.4322
Having trouble with the al.exe part. The help documentation shows the
following:
al /out:<assembly name> <module name> /keyfile:<file name>
So :
al /out:Common.Mail.dll <module name> /keyfile:Common.Mail.snk
What do I put for <module name>. My project has one class called Message.cs
If I put Message.cs as module name it doesn't work..
tips?