Activity overview
Latest activity by pjagadeesan
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...
SmartAssembly error - System.InvalidOperationException
I am trying to obfuscate my web application code. The individual dll's like App_Code and App_global are not an issue. But my application has a merged assembly (App_Web_xxx files merged using aspnet...