Luis Valencia
Luis Valencia

Reputation: 34008

Visual Studio needs to make non-functional changes to this project

I have a visual studio solution with a a vs2010 project Everytime I open it I got this warning.

Visual Studio needs to make non-functional changes to this project in order to enable the project to open in this version and Visual Studio 2010 SP1 without impacting project behavior.

ANd it generates some xml log files

I need to definitely convert it to vs 2012

How can I do that without breaking anything else?

Upvotes: 2

Views: 6891

Answers (1)

Luis Valencia
Luis Valencia

Reputation: 34008

I was able to solve it by opening the .csproj file and changing this

<FileUpgradeFlags>0</FileUpgradeFlags>

for this

<FileUpgradeFlags></FileUpgradeFlags>

Upvotes: 6

Related Questions