i'm migrating C++ .NET solution from vs 2005 to vs 2010 i receive in managed project a linker error: LINK : fatal error LNK1316: duplicate managed resource name\
thanks for your help
i'm migrating C++ .NET solution from vs 2005 to vs 2010 i receive in managed project a linker error: LINK : fatal error LNK1316: duplicate managed resource name\
thanks for your help
Is it this? :
EDIT: I'll summarise the answer below to save reading all the comments :
When VS2010 converted the project file from VS2005, it found a macro $(InputName) which is no longer used. It replaces it with %FILENAME. To fix this problem, go to Properties, Managed Resource, Resource Logical Name and change it to %(FileName).
Looks like a bug in Visual Studio 2010. In this case, it was
I suggest going through your solution to see if you have any resources that should be removed when file types are changed. They said they might fix it in an updated version, but since the workaround is so easy (delete the file) they aren't going to worry about it.