Here is my scenario:
I am currently updating a website that I support from the .Net Framework 3.5 to 4.0. All my assemblies with my code I changed the target structure, they are compiled and the site is working.
Here is my problem / question. I am using Crystal Reports 2010 provided by SAP. Their library is called βCrystal Reports for .Net Framework 4.0,β but this library is actually aimed at runtime 2.0 (and what makes me even more egregious is that client controls have 1.1 dependencies ... seriously).
I will run 3.5 (2.0 CLR) and 4.0 (CLR) together because I have to have Crystal Reports, but I want to understand these problems:
- Performance impact, if any, including this 2.0 build on an ASP.NET 4.0 site (does this require additional overhead? Do you need to download this)?
- Am I missing something and is there really a CR2010 4.0 build that targets 4.0?
- If I isolated my shell class outside of my core library business logic, 2.0 would only be loaded / used when it was called (or would the site load the assembly when the website loads into memory forces them to load anyway )? Part of this is my ignorance of how different CLRs load / interact with each other.
source share