vote up 0 vote down star

I want to make an import dependent on which target I call MSBuild with from the commandline but I'm having a hard time figuring out how to programatically access the target name(s) the .proj file was called with

i.e. <Import Project="some.targets" Condition="$(TargetName) == myTarget"/>

In general is there a way to dump all defined environment variables that exist at proj file runtime?

flag

duplicate: stackoverflow.com/questions/1140069/… – LFSR Consulting Jul 28 at 14:42
I don't think this is a duplicate, that question does not answer the question how to make an import dependent on a MSBuild command line specified target. I already know you can condition imports etc... – Jehud Jul 28 at 15:08

1 Answer

vote up 0 vote down check

Hi,

Unfortunately I don't think that you can access the names of the targets specified on the command line from within the build script itself. What are you trying to do, maybe there is another approach you can take.

link|flag
I just want do an import only if a specific target is being called etc... it doesn't appear you can do an import from within a target body either from what I can tell. – Jehud Jul 29 at 14:06
Any thoughts on this Sayed? – Jehud Jul 31 at 15:03
You can't do what you need unfortunately. But I've never run into a situation where I've had to do this. I think you may need to think about alternative approaches to your solution. This is why I was trying to inquiry to find more details about your specific situation. – Sayed Ibrahim Hashimi Aug 1 at 0:50

Your Answer

Get an OpenID
or

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