views:

547

answers:

1

We are using PublicResXFileCodeGenerator to generate *.Designer.cs files from *.resx files. Currently, these are generated whenever the .resx is saved or when we right click and choose "Run Custom Tool".

I want to be able to run this tool automatically at build time, rather than having to do it manually. The Designer.cs files are not kept under source control, so it gets annoying to have to manually generate them every time someone else changes the resource, or on first the first checkout. It's all right if the files are generated on every build, since they aren't very large, but doing it only when they're out of date would be even cooler.

Note: This would be as part of a Visual Studio build, not a command line build. I found an answer to another question saying that it is possible from within VS, just not command line: http://stackoverflow.com/questions/894806/run-a-visual-studio-custom-tool-at-build-time

A: 

Have a look at this Code Project Article. It sounds like it be a good starting point to get you what you want.

Joe Caffeine