What platforms does the linker support?
Our product works on those platforms with .NET support, namely, the following platforms, Microsoft Windows 98 Microsoft Windows NT 4.0 (SP 6a required) Microsoft Windows Millennium Edition (Windows Me) Microsoft Windows 2000 (SP2 Recommended) Microsoft Windows XP Professional Microsoft Windows XP Home Edition Since .NET does not run on WIN95, therefore, our linker does NOT support WIN95. Our linker currently does not support UNIX systems. • How does the linker deal with strong named assemblies? Our linker deals with strong named assemblies automatically, no extra work is required. Usually, attaching a strong name signature to your code involves two steps: (1) create the strong name key using the SN utility: sn -k sample.snk (2) compile your assembly with the key by adding a declaration to the assembly to indicate the location of the key file, as shown below, C#: [assembly: AssemblyKeyFile(“sample.snk”)] class StrongNameTest { … } VB.NET: