il-repack icon indicating copy to clipboard operation
il-repack copied to clipboard

Open-source alternative to ILMerge

Results 117 il-repack issues
Sort by recently updated
recently updated
newest added

This is an issue when using the project as nuget lib

Scenario: * 1 library with a custom control, .xaml-based * 1 app that uses the lib but only inherits in the .cs from the predefined control After repack the resources...

When trying to repack a console application on OS-X which includes the nuget package _Microsoft.Extensions.DependencyInjection.Abstractions_ I get: ``` INFO: IL Repack - Version 2.0.10 INFO: Adding assembly for merge: ILRepackRepro/bin/Debug/ILRepackRepro.exe...

Hi, i'm trying to merge all resource language assemblies without specifying each language. Ilrepack /wildcards /out:"somename.dll" "mainassemly.dll" ".\*\some.resources.dll" ILRepack does not understand the wildcard when in a path name. ```...

up-for-grabs
enhancement

Otherwise, it would depend on the order of the assemblies passed to the repacker. ``` csharp using System; using System.Runtime.CompilerServices; public static class Program { [MethodImpl(MethodImplOptions.ForwardRef)] public static extern int...

hi - these are some changes made in a hurry without much attention paid to style or testing. but it works and isn't a lot of code, so if there's...

Support for /allowDup without specifying a type to allow duplicates of all types. ilmerge already has this behavior. Thank you.

question

In ILMerge, we use a command line argument set like: ``` /wildcards /allowDup /closed /targetplatform:"v4,$($env:ProgramFiles)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0" /lib:$($source.dir)\CapitalModelInputBuilderConsole\bin\Release /out:$($build.dir)\CapitalModelInputBuilder.exe CapitalModelInputBuilderConsole.exe *.dll ``` where the .exe and *.dll are relative to the...

I have A.dll of version 2 depend on B.dll of version 2. I have A.dll of version 1 depend on B.dll of version 1. I know that that A.dll of...

When I package my dll using command line, I don't get any errors, but upon referencing the new DLL in a project, at build I get errors. However in VS,...

up-for-grabs
bug