2つのサードパーティdllを利用するプログラムを作成しましたが、ILMergeを使用して両方のdllを1つの実行可能ファイルにマージしたいと思います。
コマンドラインを使用してみました:
ilmerge /target:winexe /out:final.exe normal.exe 3rd_party_dll_1.dll 3rd_party_dll_2.dll
しかし、これはこのエラーを返します:
`Could not load assembly from the location 'C:\Users\...' Skipping and processing trest of arguments. `
私は何かが足りないのですか、それともこれらのdllをマージできない可能性がありますか?