0

WIXコード/msiを使用してレジストリに移動する必要があるC#dllがあり、msiを実行した後、VisualStudioの[参照の追加]ダイアログで登録済みのdllにアクセスできるはずです。WIX3.5を使用してこれを実現するにはどうすればよいですか。 ?そして、私はVisualStudio2010を使用しています

前もって感謝します!

4

1 に答える 1

0

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.

于 2012-07-05T15:29:04.507 に答える