Fixes crash when .NET 4.0 is installed (trying to load .NET 4.0 assembly into .NET 2.0 runtime)
git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/3.0@3644 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
The property pad uses the information from MSBuild to show the resolved assembly version.
git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@2630 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
Look for xml documentation files installed by the Vista SDK.
Allow loading MSBuild projects that don't specify IdGuid/default Configuration/default Platform.
git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@2075 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
WorkbenchSingleton.SafeThreadCall is now a generic method to check that the types of the arguments match the parameter types expected by the delegate.
git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@1661 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
Advantages:
- faster than reflection
- referenced libraries do not need to be looked up during code completion (only when generating the cache)
-> fixes SD2-444 ReflectionOnlyAssemblyResolve is not used when an assembly is only needed inside inner classes
--> Code completion for VB's My-namespace works again
- Assemblies do not need to be hold in RAM (they are now loaded in a separate AppDomain)
-> no more locking problems
-> less memory consumption
Disadvantages:
- higher memory-consumption because currently the file is loaded at once (previously the data was lazy-loaded using Reflection)
-> but there are some optimizations possible (reusing string and DefaultParameter instances) and lazy-loading could be reimplemented similar to what Fidalgo does with its CCDB.
git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@524 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61