Note: This is the migration API reference for FAKE 5. The new (modularized) API documentation can be found here. If the API is already migrated you can check here if exists in a module. More information regarding the migration can be found here

OBSOLETE

This API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module.

ILMergeHelper

Contains task a task which allows to merge .NET assemblies with ILMerge.

Nested types and modules

TypeDescription
AllowDuplicateTypes
OBSOLETE

Please use nuget 'Fake.DotNet.ILMerge', open 'Fake.DotNet' and use ILMerge.AllowDuplicateTypes instead

Option type to configure ILMerge's processing of duplicate types.

ILMergeParams
OBSOLETE

Please use nuget 'Fake.DotNet.ILMerge', open 'Fake.DotNet' and use ILMerge.Params instead

Parameter type for ILMerge

InternalizeTypes
OBSOLETE

Please use nuget 'Fake.DotNet.ILMerge', open 'Fake.DotNet' and use ILMerge.InternalizeTypes instead

Option type to configure ILMerge's processing of internal types.

TargetKind
OBSOLETE

Please use nuget 'Fake.DotNet.ILMerge', open 'Fake.DotNet' and use ILMerge.TargetKind instead

Option type to configure ILMerge's target output.

Functions and values

Function or valueDescription
ILMerge(...)
Signature: setParams:(ILMergeParams -> ILMergeParams) -> outputFile:string -> primaryAssembly:string -> unit
Attributes:
[<Obsolete("Please use nuget 'Fake.DotNet.ILMerge', open 'Fake.DotNet' and use ILMerge.run instead")>]
OBSOLETE

Please use nuget 'Fake.DotNet.ILMerge', open 'Fake.DotNet' and use ILMerge.run instead

Uses ILMerge to merge .NET assemblies.

Parameters

  • setParams - Function used to create an ILMergeParams value with your required settings. Called with an ILMergeParams value configured with the defaults.
  • outputFile - Output file path for the merged assembly.
  • primaryAssembly - The assembly you want ILMerge to consider as the primary.
ILMergeDefaults
Signature: ILMergeParams
Attributes:
[<Obsolete("Please use nuget 'Fake.DotNet.ILMerge', open 'Fake.DotNet' and use ILMerge.Params.Create() instead")>]
OBSOLETE

Please use nuget 'Fake.DotNet.ILMerge', open 'Fake.DotNet' and use ILMerge.Params.Create() instead

ILMerge default parameters. Tries to automatically locate ilmerge.exe in a subfolder.