- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I've made a bunch of add-ins for inventor and for some reason I have one that will not debug. I've started other add-ins from scratch and copied the settings meticulously but still nothing.
The add-in loads, updates on build but will not debug.
It was working until something changed at which point I can't get it back. I've even gone back on my previous git versions and saved backups but I still cant get it run in debug mode.
I've looked through every tutorial and help file I can find and I can't see anything I'm doing wrong.
Currently my build output path is pointing to C:\ProgramData\Autodesk\ApplicationPlugins
This is because my add-in is already in the appstore and I want to overwrite the store location with the current build.
I have my post-build set to:
call "%VS140COMNTOOLS%vsvars32" mt.exe -manifest "$(ProjectDir)$(ProjectName).X.manifest" -outputresource:"$(TargetPath)";#2 XCopy "$(TargetPath)" "%AppData%\Autodesk\ApplicationPlugins\$(TargetName)\" /Y /R XCopy "$(ProjectDir)Autodesk.$(ProjectName).Inventor.addin" "%AppData%\Autodesk\ApplicationPlugins\$(TargetName)\" /Y /R
I've also tried to revert all of these settings to the default settings like what the template has, but it still will not debug. (even though the template file will run just fine)
Every time it runs, the breakpoint says that the symbols haven't been loaded.
The only thing I can think of is that somewhere in the registry, there is something that is either blocking or re-directing visual studio's connection to the StandardAddInServer.vb located in the .dll file. The reason I think this is because if I make another add-in in the same location, it notifies me that StandardAddInServer.vb was found in the second add-in files and not the add-in I'm debugging.
Solved! Go to Solution.