WIXコード/msiを使用してレジストリに移動する必要があるC#dllがあり、msiを実行した後、VisualStudioの[参照の追加]ダイアログで登録済みのdllにアクセスできるはずです。WIX3.5を使用してこれを実現するにはどうすればよいですか。 ?そして、私はVisualStudio2010を使用しています
前もって感謝します!
You can use a custom action to achieve this.
This explains how to create a custom action the executes in quiet mode. Add something similar to following:
gacutil /i yourdll.dll
in the Value attribute of Property tag.