here is the fact that I have two boxes one won 2003 IIS6 server another win2008 IIS 7.0 server I have a standalone application called Util (win app) built into .net 2.0 (VS2005) trying to download .net 4.0 dll / assembly (VS2010). this required a simple setup in the application, which was supposed to create "Util.exe.config" and add the following setup
<startup> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/> </startup>
This basically ensures that .net 2.0 uses CLR 4.0
It works like a charm in a winserver2008 window, but screams at a message in a win2003 server.
Any ideas?
@update: .net 4.0 is installed on both machines.
Gauls source share