SolidWorks – Apply Appearance in Assembly
March 28th, 2010
No comments

Categories: SolidWorks
I have been learning writing SolidWorks addins using Microsoft Visual Studio 2008. In order to register my addin with SolidWorks so that it shows up in the “Tools->Add-Ins” menu, I had to add the following post-build event to my project:
For 64-bit system:
"%Windir%\Microsoft.Net\Framework64\v2.0.50727\regasm" "$(TargetPath)" /codebase |
For 32-bit system:
"%Windir%\Microsoft.Net\Framework\v2.0.50727\regasm" "$(TargetPath)" /codebase |