Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
29 views

I am running into a build error when trying to pack my solution using ILRepack.Lib.MSBuild.Task>. My solution consists of 'Project1' and my unit test project 'TestProject1'. Project1 uses a '...
Jan Kubica's user avatar
1 vote
0 answers
131 views

I want to "merge" (or "pack") some .NET assemblies into one. To achieve this I am trying "ILRepack". I am referencing the nuget package 'ILRepack.MSBuild.Task' (version 2....
murphysto's user avatar
0 votes
1 answer
125 views

I'm using ILRepack to merge $(TargetDir)\*.dll with $(TargetDir)\Setup.exe into a subfolder $(TargetDir)\Merged\Setup.exe. The merge is successful, and Setup.exe runs, but I'm getting some JIT errors ...
InteXX's user avatar
  • 6,537
1 vote
0 answers
333 views

Guess ILRepack is not used so much any more now when Single-file deployment exist.The last releases from il-repack and ILRepack.Lib.MSBuild.Task is quite old. But I have a problem with ILRepack that I ...
Håkan Olsson's user avatar
4 votes
0 answers
2k views

I'm currently migrating a project from .NET Framework 4.8 to .NET 6. In the build pipeline the following tools are in use: ILRepack or ILMerge: for merging multiple XML files into one XML Costura....
stgerb's user avatar
  • 51
1 vote
1 answer
915 views

I'm trying to debug plugin assembly that been merged via ILRepack, but Plugin Registration tool's Replay Plug-in Execution throws an error related to System.Text.Json: Unhandled Exception: System....
Paulius's user avatar
  • 53
2 votes
0 answers
964 views

I had a working IL-Repack post-build task in my project. Recently, I updated a number of libraries and now I have an issue that I cannot figure out. My project uses Newtonsoft.Json and I have updated ...
Luke Bailey's user avatar
0 votes
0 answers
1k views

I am creating a custom package using a nuspec where i specify a dependency. I am also merging several dlls into one dll. I need to reference an external dll so that the merged dll doesn't include the ...
BrunoMartinsPro's user avatar
0 votes
0 answers
102 views

I've used ILRepack to merge a bunch of DLLs into a final Merged.dll with ILRepack.exe /verbose /out:C:\..\.Merged.dll /wildcards *.dll /lib:C:\.MonoAndroidPath.\v8.1 Some of the merged DLLs use Mono....
Bogdan Daniel's user avatar
0 votes
0 answers
309 views

I am getting the following error: is inaccessible due to its protection level. Only public types can be processed. at System.Xml.Serialization.TypeDesc.CheckSupported() on a model class that I ...
ChipND's user avatar
  • 1
2 votes
0 answers
266 views

I am trying to create a single executable from the binaries of a project. This is what I have: A shared library dll, written in F#, I will refer to it by A A library dll, written in C# that implements ...
stackh34p's user avatar
  • 9,029
3 votes
0 answers
805 views

I'm building a public nuget package from a .NetStandard project. This project uses a private nuget package (from a private nuget server) targeting .netStandard too. Before switching to .net standard, ...
Softlion's user avatar
  • 12.7k