I have a solution which creates multiple .dll and .exe files. I now want to merge some .dll files with the executables. I discovered the MSBuild.ILMerge.Task NuGet package, which by default merges all .dll files into the executable. This is working fine.
But i only want to include some .dll files, since others are shared between multiple executables. I had a look at ILMerge.props but there is no way to specify which .dll files are merged.
How can i specify the input files when using the MSBuild.ILMerge.Task package?