I need to decompile an old class library using Telerik JustDecompile. My problem is that the library is referencing things like System.Web.dll Version 1.0.5000.0, which is the .NET 1.0 version if I'm not mistaken.
All the PC's I have access to are running windows 7, so I can't simply install the 1.0 framework. So, I need to get my hands on the libraries some other way.
If I decompile the library without resolving the references, weird things happen like all the webmethods in the library are decompiled with empty [SoapDocumentMethod(,)], [[SoapHeader(,)]], etc. annotations.
I also need to resolve mscorlib.dll, System.Data.dll and System.Web, but it doesn't seem to matter if I manually add the references to a newer version after decompiling. It's just System.Web.Services that seems to be a problem.