How to create build event in Visual studio
I want to create my own prebuild event to combine all开发者_C百科 javascripts files in visual studio.
Please suggest me how i can do this.
Please do not give links of available methods and dlls. I want to create my own dllss to do this.
The build events in Visual Studio basically lets you execute a list of command line statements before or after the build. So you should create your own exe files or batch scripts, and not dlls. (You can, of course, create a command line program that references some dlls.)
I other words:
- Create a command line program that you want to execute before you run the build command.
- Add the command in the Build Events tab on the Properties sheet for your project.
精彩评论