vote up 0 vote down star

Can a Visual Studio 2008 custom tool be passed additional parameters from the custom tool property grid in VS?

flag

1 Answer

vote up 0 vote down check

Yes and no. You'd fix this by adding the custom tool as a custom build rule instead. The (built-in) build rule for C++ files causes the property sheets for C++ files; the build rule for IDL files causes those property sheets. Your own custom build rule can define its own property sheets.

link|flag
Does this work for C# too? – SDX2000 Apr 27 at 15:12
C# is the language, not the IDE. So, in Visual Studio, there is a built-in build rule for C# (.cs) files. – MSalters Apr 28 at 8:06
Ok yes, that was a stupid question. The real question would be how do I add custom build rules from within visual studio? – SDX2000 Apr 28 at 9:53
Hmm - seems that the .Net term is a custom build action, not rule. And this is done behind the scenes through MSBuild. C++ is the odd one out. – MSalters Apr 28 at 14:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.