Summary
Merges the specified assemblies.
Syntax
[CakeMethodAlias]
public static void ILMerge(this ICakeContext context, FilePath outputFile, FilePath primaryAssembly, IEnumerable<FilePath> assemblyPaths)
Examples
var assemblyPaths = GetFiles("./**/Cake.*.dll");
ILMerge("./MergedCake.exe", "./Cake.exe", assemblyPaths);
Attributes
Parameters
| Name |
Type |
Description |
| context |
ICakeContext |
The context. |
| outputFile |
FilePath |
The output file. |
| primaryAssembly |
FilePath |
The primary assembly. |
| assemblyPaths |
IEnumerable<FilePath> |
The assembly paths. |
Return Value