There is a Windows Forms (NET 3.5) project, foo.csproj, with localized resources files. I use MSBuild to build the project and create a deployment structure:
<MSBuild Projects="foo.csproj" Properties="Configuration=Release;OutputPath=..\deploy\foo" Targets="Build" />
It copies foo.exe and all localized DLL files to the deploy\foo
folder, but I need localized DLL files to be copied into a separate folder. It should be:
- deploy\foo\foo.exe
- deploy\locales\ru-RU\foo.resources.dll
- deploy\locales\pt-BR\foo.resources.dll
Is there a way to configure MSBuild to copy EXE and DLL files to different folders?
GenerateSatelliteAssemblies
andCopyFilesToOutputDirectory
. How did you name your resource files ? – JoeBilly