vote up 0 vote down star

Is it possible to run an msbuild task that populates a property or Item from an imported file "A" and then use these values in another file which imports file "A"?

EDIT: FileX imports FileA and FileY imports FileA. One of FileA's property is changed in FileX. Can this changed value be accessed in FileY

flag

1 Answer

vote up 0 vote down check

Sorry its a bit confusing:

Are you saying FileX imports FileA and FileY imports FileA. FileX sets property P in FileX but FileY reads it? If there is no relationship between X & Y then the only way to do it would be use the fact that properties in MSBUILD overlap with evironment vars. So possbly calling

<exec ... setx.exe Propertyname SomeValue.... /> in fileA and the $(Propertyname) in FileB
link|flag
FileX imports FileA and FileY imports FileA. One of FileA's property is changed in FileX. Can this changed value be accessed in FileY? – Draco Mar 25 at 11:50
everything is done in the msbuild execution context. So assuming X & Y are imported in the same context then yes the latter will pick up changes from the first as at the time of import the second will already have a value set and thus the original value in fileA will not be used. – Preet Sangha Mar 26 at 12:23

Your Answer

Get an OpenID
or

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