AnantLabs / xmlrpcnet

Automatically exported from code.google.com/p/xmlrpcnet
0 stars 0 forks source link

Moma Mono Migration Analyzer for Mono 2.6 returns warnings #91

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Compile xmlrpc 2.5.0
2. Execute Mono migration analyzer for mono 2.6 on the dll

What is the expected output? What do you see instead?
Expected to see no complaints. There are 8 method calls in that are not 
implemented in Mono.

To fix this, replace all instances of 
CodeTypeReference ctrReturn = CodeTypeReference(returnType);
with
CodeTypeReference ctrReturn = CodeTypeReference();
ctrReturn.BaseType = returnType.ToString();

What version of the product are you using? On what operating system?
2.5.0, Windows XP

Please provide any additional information below.

Original issue reported on code.google.com by ptuga...@gmail.com on 25 May 2011 at 1:26

Attachments:

GoogleCodeExporter commented 9 years ago
In the future, moma analyzer should be executed prior to every release

Original comment by ptuga...@gmail.com on 25 May 2011 at 2:03