Creates a link to a managed resource.
/linkresource:filename[,name[,public|private]] -or- /linkres:filename[,name[,public|private]] |
Arguments
- filename
-
The resource file to link to the assembly.
- name[,public|private] (optional)
-
The logical name for the resource; the name used to load the resource. The default is the name of the file. Optionally, you can specify whether the file is public or private in the assembly manifest. For example, /linkres:filename.res,myname.res,public. By default, filename is public in the assembly.
Remarks
The /linkresource option does not embed the resource file in the output file. Use the /resource option to embed a resource file in the output file.
If filename is a .NET Framework resource file created, for example, by the
filename can be any file format. For example, you may want to make a native DLL part of the assembly, so it can be installed into the Global Assembly Cache and accessed from managed code in the assembly.
/linkres is the short form of /linkresource.
Example
Compile in.js
and link to resource file rf.resource
:
В | Copy Code |
---|---|
jsc /linkresource:rf.resource in.js |