Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMateo Torres-Ruiz <mateoatr@users.noreply.github.com>2021-05-25 00:52:47 +0300
committerGitHub <noreply@github.com>2021-05-25 00:52:47 +0300
commitfa7e6d38408a7b46c8f1bbfd80c5a917990cedd6 (patch)
tree0bf6f88289a3db93008285e75533c22ec1a73e20 /docs
parent4d4272649720a55279df925fd0f074ab414bbd31 (diff)
Flow C++/CLI assemblies into the linker (#2042)
* Flow cppcli assemblies into the linker * Add tests * Add C++/CLI assembly * Update docs/error-codes.md Co-authored-by: Vitek Karas <vitek.karas@microsoft.com> * PR feedback * Change to copy action. Co-authored-by: Vitek Karas <vitek.karas@microsoft.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/error-codes.md5
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/error-codes.md b/docs/error-codes.md
index cb75e00e8..753914a1a 100644
--- a/docs/error-codes.md
+++ b/docs/error-codes.md
@@ -1592,6 +1592,9 @@ void RequirePublicMethodOnAType(
}
```
+#### `IL2106`: Invalid assembly action '{action}' specified for assembly '{assembly}'. C++/CLI assemblies can only be copied or skipped.
+
+
## Single-File Warning Codes
#### `IL3000`: 'member' always returns an empty string for assemblies embedded in a single-file app. If the path to the app directory is needed, consider calling 'System.AppContext.BaseDirectory'
@@ -1636,4 +1639,4 @@ void RequirePublicMethodOnAType(
// can break functionality when embedded in a single-file app. Use 'MethodFriendlyToSingleFile' instead. http://help/assemblyfiles
MethodWithAssemblyFilesUsage();
}
- ``` \ No newline at end of file
+ ```