帮我看看下面一些英文是什么意思?应该怎样做
=========
Signing a library is a two step process:
Embedding the NX resource file in a DLL or application.
Running the NX signing tool.
The following sections explain each step.
1. Embedding the NX Resource File
To embed the NX resource file, add the NXSigningResource.res file to an application when compiling it. Use the "/resource": compiler directive. For example:
VB
vbc /libpath:%UGII_ROOT_DIR%\managed /t:library /r:NXOpen.dll /r:NXOpen.Utilities.dll /resource:%UGII_BASE_DIR%\ugopen\NXSigningResource.res MyApp.vb.
C#
csc /resource:NXSigningResource.res /t:library MyApp.cs
When using a Visual Studio session to compile an application, make sure that after you add the NXSigningResource.res file to a project, set the Compile property on the resource file to Embedded Resource.
2. Running the NX Signing Tool
Once you have embedded the resource, sign it using the SignLibrary utility. For example:
SignLibrary MyApp.dll
You can find the SignLibrary utility in the UGII kit directory on the NX installation. You can only run this utility when a .NET authoring license is available.
Verification
To verify that a library or application has been correctly signed, use the -verify option. For example:
SignLibrary -verify MyApp.dll
This displays a message confirming whether the file has been correctly signed or not.