Click here to Skip to main content
15,888,521 members
Articles / Visual Studio

Triggering a Build when File Changed in Visual Studio

Rate me:
Please Sign up or sign in to vote.
4.75/5 (4 votes)
27 Jan 2012CPOL1 min read 16.5K   2  
How to trigger a build when file changed in Visual Studio

In Visual Studio, when a source code file is changed, the project it belongs to will be built when the whole solution is being built. So far, so good. But what happens if you want some other files (read: non source code files) to have the same behavior?

In my case, I had some translation files (XML files), and a custom build event that converted them into a binary representation. So when one of the translation files changed, I wanted this change to trigger a build for the project the translation files were contained in, so that they could be converted into binary form (i.e., so that the build event was executed).

Visual Studio (at least version 2010) provides an easy but hidden way to achieve exactly this. After you’ve added the file(s) to your project, right-click them and choose Properties (Alt+Return).

The Properties menu item

Note: You need to open the properties for the files you want to trigger the build – don’t open the project’s properties. Also, you need to open the “Properties” dialog. You can’t do this from the “Properties” panel (which usually opens up when hitting F4).

Note 2: You could have selected multiple files to make them all trigger a build when changed in one step.

In the “Properties” dialog, under Configuration Properties –> General –> Item Type, you select Custom Build Tool. Then you hit “OK”. And that’s it.

Selecting "Custom Build Tool" as "Item Type".

Changing the file(s) should now trigger a build when you build the solution (via menu Build –> Build Solution).

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer University of Stuttgart
Germany Germany
I have studied Software Engineering and am currently working at the University of Stuttgart, Germany.

I have been programming for many years and have a background in C++, C#, Java, Python and web languages (HTML, CSS, JavaScript).

Comments and Discussions

 
-- There are no messages in this forum --