MSBuild.ILMerge.Task 1.0.3-rc2

This is a prerelease version of MSBuild.ILMerge.Task.
dotnet add package MSBuild.ILMerge.Task --version 1.0.3-rc2
NuGet\Install-Package MSBuild.ILMerge.Task -Version 1.0.3-rc2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="MSBuild.ILMerge.Task" Version="1.0.3-rc2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MSBuild.ILMerge.Task --version 1.0.3-rc2
#r "nuget: MSBuild.ILMerge.Task, 1.0.3-rc2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install MSBuild.ILMerge.Task as a Cake Addin
#addin nuget:?package=MSBuild.ILMerge.Task&version=1.0.3-rc2&prerelease

// Install MSBuild.ILMerge.Task as a Cake Tool
#tool nuget:?package=MSBuild.ILMerge.Task&version=1.0.3-rc2&prerelease

MSBuild ILMerge task allows you to use the famous ILMerge utility (ILMerge nuget package, see https://research.microsoft.com/en-us/people/mbarnett/ILMerge.aspx) in automated builds and/or Visual Studio 2012 projects.
     It is similar to the ILMerge.MSBuild.Tasks nuget package, originally published by neoeinstein@gmail.com (that seems to be abandoned) with the following additional features:
     - It supports all the latest ILMerge options;
     - ILMerge.exe is discovered as package dependency;
     - The .targets file overrides the CopyFilesToOutputDirectory build target, leaving the AfterBuild target free for further customizaton;
     - It attempts to guess the reasonable merge order for the included assemblies and lets you to finetune it with a configuration file.

     ILMerge.exe is not included into this package because its license prohibits redistribution. Referencing it as package dependency and loading it from its package location ensures that the latest ILMerge version is always used.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

GitHub repositories (25)

Showing the top 5 popular GitHub repositories that depend on MSBuild.ILMerge.Task:

Repository Stars
NYAN-x-CAT/AsyncRAT-C-Sharp
Open-Source Remote Administration Tool For Windows C# (RAT)
nea/MarkdownViewerPlusPlus
A Notepad++ Plugin to view a Markdown file rendered on-the-fly
scottlerch/HostsFileEditor
Easily edit and manage the hosts file for Windows
structuremap/structuremap
A Dependency Injection/Inversion of Control tool for .NET
qwqdanchun/DcRat
A simple remote tool in C#.
Version Downloads Last updated
1.0.3-rc2 739 12/28/2014
1.0.2 1,738 8/28/2014
1.0.2-rc1 70 12/9/2013

Updated to look for ILMerge also in the tools subfolder of its package. Support now ILMergeTransitive flag for transitive merge.