How can we help you today? How can we help you today?
manlyboy
I originally meant error reporting but confused it with feature reporting. I've figured feature reporting out and error reporting either is or isn't is it 8) / comments
I originally meant error reporting but confused it with feature reporting. I've figured feature reporting out and error reporting either is or isn't is it 8)
0 votes
To be clear, the above command line produces the following files for each page in the web application: <pageName>.aspx.xxxxx.compiled App_Web_<pageName>.aspx.xxxxx.dll [the xxxxx is a hash code and is the same for all the files] as well as: App_global.asax.dll <WebsiteName>.dll It also will produce dll's for any other dependent dll's in the project. The <pageName>.aspx.xxxxx.dll is the compiled web page only. That is, the code behind page (.cs) is not compiled into this dll. All the .cs files are compiled into one dll which is the <WebsiteName>.dll . Using Visual Build, I use SA on the App.global.asax.dll followed by the individual web page dll's and finally the dependant dll's and the <WebsiteName>.dll . Some of the pages can be viewed fine however others cannot and SA generates the following error reports. The stack trace reads: System.TypeLoadException: Inheritance security rules violated while overriding member: 'SmartAssembly.SmartExceptionsCore.SmartStackFrame.GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)'. Security accessibility of the overriding method must match the security accessibility of the method being overriden. Notwithstanding the above, I have been successful in generating the individual page files on an ad-hoc basis and viewing them successfully. I will do some more testing however this is becoming very time consuming [image] . / comments
To be clear, the above command line produces the following files for each page in the web application: <pageName>.aspx.xxxxx.compiled App_Web_<pageName>.aspx.xxxxx.dll [the xxxxx is a hash code and...
0 votes