You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
LINK.exe links Common Object File Format (COFF) object files and libraries to create an executable (.exe) file or a dynamic-link library (DLL).
11
+
LINK.exe links Common Object File Format (COFF) object files and libraries to create an executable (EXE) file or a dynamic-link library (DLL).
12
12
13
13
The following table lists options for LINK.exe. For more information about LINK, see:
14
14
@@ -22,7 +22,7 @@ The following table lists options for LINK.exe. For more information about LINK,
22
22
23
23
On the command line, linker options aren't case-sensitive; for example, `/base` and `/BASE` mean the same thing. For details on how to specify each option on the command line or in Visual Studio, see the documentation for that option.
24
24
25
-
You can use the [comment](../../preprocessor/comment-c-cpp.md) pragma to specify some linker options.
25
+
You can use the [`comment`](../../preprocessor/comment-c-cpp.md) pragma to specify some linker options.
26
26
27
27
## Linker options listed alphabetically
28
28
@@ -43,7 +43,7 @@ You can use the [comment](../../preprocessor/comment-c-cpp.md) pragma to specify
43
43
|[`/CLRIMAGETYPE`](clrimagetype-specify-type-of-clr-image.md)| Sets the type (IJW, pure, or safe) of a CLR image. |
44
44
|[`/CLRSUPPORTLASTERROR`](clrsupportlasterror-preserve-last-error-code-for-pinvoke-calls.md)| Preserves the last error code of functions that are called through the P/Invoke mechanism. |
45
45
|[`/CLRTHREADATTRIBUTE`](clrthreadattribute-set-clr-thread-attribute.md)| Specifies the threading attribute to apply to the entry point of your CLR program. |
46
-
|[`/CLRUNMANAGEDCODECHECK`](clrunmanagedcodecheck-add-suppressunmanagedcodesecurityattribute.md)| Specifies whether the linker will apply the SuppressUnmanagedCodeSecurity attribute to linker-generated PInvoke stubs that call from managed code into native DLLs. |
46
+
|[`/CLRUNMANAGEDCODECHECK`](clrunmanagedcodecheck-add-suppressunmanagedcodesecurityattribute.md)| Specifies whether the linker will apply the `SuppressUnmanagedCodeSecurity` attribute to linker-generated P/Invoke stubs that call from managed code into native DLLs. |
@@ -126,7 +127,7 @@ You can use the [comment](../../preprocessor/comment-c-cpp.md) pragma to specify
126
127
|[`/WINMDFILE`](winmdfile-specify-winmd-file.md)| Specifies the file name for the Windows Runtime Metadata (winmd) output file that's generated by the [`/WINMD`](winmd-generate-windows-metadata.md) linker option. |
127
128
|[`/WINMDKEYFILE`](winmdkeyfile-specify-winmd-key-file.md)| Specifies a key or key pair to sign a Windows Runtime Metadata file. |
128
129
|[`/WINMDKEYCONTAINER`](winmdkeycontainer-specify-key-container.md)| Specifies a key container to sign a Windows Metadata file. |
129
-
|[`/WINMDDELAYSIGN`](winmddelaysign-partially-sign-a-winmd.md)| Partially signs a Windows Runtime Metadata (.winmd) file by placing the public key in the winmd file. |
130
+
|[`/WINMDDELAYSIGN`](winmddelaysign-partially-sign-a-winmd.md)| Partially signs a Windows Runtime Metadata (*`.winmd`*) file by placing the public key in the winmd file. |
130
131
|[`/WX`](wx-treat-linker-warnings-as-errors.md)| Treats linker warnings as errors. |
131
132
132
133
<sup>16.1</sup> This option is available starting in Visual Studio 2019 version 16.1.
0 commit comments