Message 1 of 4
Windows Installer for custom plugin
Not applicable
07-27-2018
11:51 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have created sample plugin for autocad..It is created a classLibrary. Now i need to ship this plugin to deploy on other machine ..Am trying to make a installer using Wix.
After reading few blogs , i saw that there are two ways to automatically load the dll when autocad starts up,
1) Changing Acaddoc.lisp and
write netload as follows :
(command "_netload" "C:\\Users\\Test\\source\\repos\\TestPlugin\\TestPlugin\\bin\\Release\\TestPlugin.dll") and second one being tampering around with the registry ( which am not familiar with)
Which is the better way to make an install. In Wix while installing am thinking to execute a .bat file which will make an entry to Acaddoc.lisp
Is this good way to do using .bat file