Ruhee Jaiswal
Ruhee Jaiswal

Reputation: 131

Resolve conversion warning when converting from VS2008 to VS2010

I was trying to port my MFC application from VS2008 to VS2010 and observed the below mentioned warning: "VCWebServiceProxyGeneratorTool is no longer supported. The tool has been removed from your project settings."

We dont use web server proxies in our application. So this setting is not useful for my application. I want my code to be ported with 0 warnings. Is there any way or setting or configuration in which after porting my application from VS2008 to VS2010 I shall be able t remove this conversion warning.

Can anybody help as to what is it and how to resolve the same??

Upvotes: 0

Views: 3786

Answers (1)

Hanxue
Hanxue

Reputation: 12766

An easier way is to create a new project in Visual Studio 2010 and import only the files you need from Visual Studio 2008.

Having said that, I have upgraded a few projects from Visual Studio 2008 or older to Visual Studio 2012 and encountered the warning multiple times, but have not seen it impacting the project itself.

Read up on this comprehensive blog post for Visual Studio project upgrading gotchas.

TL;DR: you can safely ignore this warning.

Upvotes: 4

Related Questions