views:

39

answers:

2

Hello,

I'd like to use custom build properties to drive the build process. Is it possible to specify them using Visual Studio user interface? I'd like to avoid editing the msbuild file every time I need to change the property.

Maybe VS2010 has support for that?

Thanks,

+2  A: 

As far as I know, you can't do that using the Visual Studio itself. However, there are some extenal applications to do that, for example: MSBuild Sidekick or MSBuild Explorer.

Zbigniew Kawalec
Thank you for providing alternatives.
liori
You are correct there is no UI support for custom properties and items.
Sayed Ibrahim Hashimi
A: 

Nothing in the user interface.

But if you unload the project (right click on project node in Solution Explorer) then you can open the project file to directly edit the XML (another right click).

Richard
That's what I'd like to avoid. Not everybody in our team has knowledge about MS Build.
liori
MSBuild is pretty easy (especially for easy stuff), if members of the dev team are struggling with it I would worry about their ability to write production code (unfortunately).
Richard
Sometimes people join teams not because they can program well, but because they are field specialists.
liori