Summary
Merges the specified assemblies.
Syntax
[CakeMethodAlias]
public static void ILRepack(this ICakeContext context, FilePath outputFile, FilePath primaryAssembly, IEnumerable<FilePath> assemblyPaths)
Examples
var assemblyPaths = GetFiles("./**/Cake.*.dll");
ILRepack("./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