Comments
Sort by recent activity
I am using the VS2008 compiler.
FYI - SmartAssembly did not throw an error when the compiled App_Code dll was obfuscated separately.
It only threw an error when I tried to obfuscate the merged assembly
(merged all my App_Web, App_Code dlls to one assembly using aspnet_merge) / comments
I am using the VS2008 compiler.
FYI - SmartAssembly did not throw an error when the compiled App_Code dll was obfuscated separately.
It only threw an error when I tried to obfuscate the merged asse...
Thanks for the info. It helped me to resolve the issue.
The method definition was
Protected Function saveSubCategoryData(Optional ByVal selectedIndex = Nothing) As Boolean
I was able to change it to the following, compile and obfuscate.
Protected Function saveSubCategoryData(Optional ByVal selectedIndex As String = Nothing) As Boolean
Thanks again! / comments
Thanks for the info. It helped me to resolve the issue.
The method definition was
Protected Function saveSubCategoryData(Optional ByVal selectedIndex = Nothing) As Boolean
I was able to change it t...