After opening my VS Ultimate 2012 C # solution in VS Ultimate 2013 12.0.21005.1REL I get the following warning:
Warning 1 Conflicts were found between different versions of the same dependent assembly. Set the "AutoGenerateBindingRedirects" property to true in the project file. For more information, see http://go.microsoft.com/fwlink/?LinkId=294190 . Energyms
I follow the instructions on the Microsoft link. Then I edited the csproj file, adding the following line:
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
When I create the solution again, I get the following error:
The error list "app.config; obj \ x86 \ Debug \ EnergyMS.csproj.EnergyMS.exe.config" is an invalid value for the "ConfigFile" task "GenerateApplicationManifest" task. Unable to pass multiple items to a parameter of type "Microsoft.Build.Framework.ITaskItem". Energyms
Output Window:
C: \ Program Files (X86) \ MSBuild \ 12.0 \ Bin \ Microsoft.Common.CurrentVersion.targets (3243.9): error MSB4094: "app.config; obj \ x86 \ Debug \ EnergyMS.csproj.EnergyMS.exe. config "is an invalid value for the" ConfigFile "task" GenerateApplicationManifest "task. Unable to pass multiple items to a parameter of type "Microsoft.Build.Framework.ITaskItem".
I saw similar topics in the forum, but I do not understand the problem.
Can someone help me understand the problem?
Thanks.
c # visual-studio-2013
Lder
source share