Skip to content

Commit 5cd0eec

Browse files
authored
Alphabetize the Task Options list in the documentation (#57)
1 parent b468664 commit 5cd0eec

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

README.md

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -93,33 +93,33 @@ You can turn this functionality off by setting ClearOutputDirectory to False as
9393

9494
| Option | Description |
9595
|--------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------|
96-
| KeyFile | Specifies a key file to sign the output assembly. |
97-
| KeyContainer | Specifies a key container to use. |
98-
| LogFile | Specifies a log file to output log information. |
99-
| Union | Merges types with identical names into one. |
100-
| DebugInfo | Enable/disable symbol file generation. |
96+
| AllowDuplicateResources | Allows duplicating resources in the output assembly. |
97+
| AllowMultiple | Allows multiple attributes (if type allows). |
98+
| AllowedDuplicateNamespaces | Allows the specified namespaces from being duplicated into input assemblies. Multiple namespaces are delimited by ",". |
10199
| AttributeFile | Take assembly attributes from the given assembly file. |
102100
| CopyAttributes | Copy assembly attributes. |
103-
| AllowMultiple | Allows multiple attributes (if type allows). |
104-
| TargetKind | Target assembly kind (Exe\|Dll\|WinExe\|SameAsPrimaryAssembly) |
105-
| TargetPlatformVersion | Target platform (v1, v1.1, v2, v4 supported). |
106-
| TargetPlatformDirectory | Path of Directory where the target platform is located. |
107-
| XmlDocumentation | Merge assembly XML documentation. |
108-
| LibraryPath | List of paths to use as "include directories" when attempting to merge assemblies. |
101+
| DebugInfo | Enable/disable symbol file generation. |
102+
| DelaySign | Set the key file, but don't sign the assembly. |
103+
| ExcludeInternalizeSerializable | Do not internalize types marked as Serializable. |
104+
| InputAssemblies | List of assemblies that will be merged. |
109105
| Internalize | Set all types but the ones from the first assembly 'internal'. |
110106
| InternalizeAssembly | Internalize only specific assemblies (list of assembly names without path or extension). |
111-
| RenameInternalized | Rename all internalized types (to be used when Internalize is enabled). |
112-
| ExcludeInternalizeSerializable | Do not internalize types marked as Serializable. |
113107
| InternalizeExclude | If Internalize is set to true, any which match these regular expressions will not be internalized. If Internalize is false, then this property is ignored. |
108+
| KeyContainer | Specifies a key container to use. |
109+
| KeyFile | Specifies a key file to sign the output assembly. |
110+
| LibraryPath | List of paths to use as "include directories" when attempting to merge assemblies. |
111+
| LogFile | Specifies a log file to output log information. |
112+
| NoRepackRes | Does not add the embedded resource 'ILRepack.List' with all merged assembly names. |
114113
| OutputFile | Output name for the merged assembly. |
115-
| InputAssemblies | List of assemblies that will be merged. |
116-
| DelaySign | Set the key file, but don't sign the assembly. |
117-
| AllowDuplicateResources | Allows duplicating resources in the output assembly. |
118-
| AllowedDuplicateNamespaces | Allows the specified namespaces from being duplicated into input assemblies. Multiple namespaces are delimited by ",". |
119-
| ZeroPeKind | Allows assemblies with Zero PeKind (but obviously only IL will get merged). |
120114
| Parallel | Use as many CPUs as possible to merge the assemblies. |
121115
| PauseBeforeExit | Pause execution once completed (good for debugging). |
116+
| RenameInternalized | Rename all internalized types (to be used when Internalize is enabled). |
117+
| RepackDropAttribute | Name of an attribute (optional). Members in input assemblies marked with this attribute will be dropped during merging. |
118+
| TargetKind | Target assembly kind (Exe\|Dll\|WinExe\|SameAsPrimaryAssembly) |
119+
| TargetPlatformDirectory | Path of Directory where the target platform is located. |
120+
| TargetPlatformVersion | Target platform (v1, v1.1, v2, v4 supported). |
121+
| Union | Merges types with identical names into one. |
122122
| Verbose | Additional debug information during the merge that will be outputted to LogFile. |
123-
| NoRepackRes | Does not add the embedded resource 'ILRepack.List' with all merged assembly names. |
124123
| Wildcards | Allows (and resolves) file wildcards (e.g., `*.dll`) in input assemblies. |
125-
| RepackDropAttribute | Name of an attribute (optional). Members in input assemblies marked with this attribute will be dropped during merging. |
124+
| XmlDocumentation | Merge assembly XML documentation. |
125+
| ZeroPeKind | Allows assemblies with Zero PeKind (but obviously only IL will get merged). |

0 commit comments

Comments
 (0)