.Net Web Service Studio broke since .NET 2.0
June 29th, 2006 — BinaryjamSince I installed .NET 2.0, when I try to use the Web Service studio it would complain about partial classes when pointed at certain webservices.
To remedy this tell studio which runtime is supported
Create a WebServiceStudio.exe.config file with this in it
<configuration>
<startup>
<supportedRuntime version=”v1.1.4322″ />
</startup>
</configuration>
That should work now.
