Search code examples
resourcesresxvisual-c#-express-2010

Visual C# localization: Resources DLLs generated only in obj/Debug/tempPE


To internationalize&localize my Visual C# 2010 Express project I created Resources.resx and Resources.fr.resx containing key-value strings:

enter image description here

When I press Rebuild, two DLLs get created:

obj/Debug/tempPE/Properties.Resources.Designer.cs.dll
obj/Debug/tempPE/Properties.Resources.fr.Designer.cs.dll

Why in this odd location?
Should I embed those in my installer?
No other Resources DLL are generated anywhere so I have no choice, but it is scary to ship files coming from a "tempPE" folder...


Solution

  • Remove Resource.fr.Designer.cs file. It should not be there. Resource.Designed.cs is enough.