MSBuild, properties and imported files - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T09:23:27Zhttp://stackoverflow.com/feeds/question/680880http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/680880/msbuild-properties-and-imported-files0MSBuild, properties and imported filesDraco2009-03-25T09:43:10Z2009-03-25T11:51:13Z
<p>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"?</p>
<p>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</p>
http://stackoverflow.com/questions/680880/msbuild-properties-and-imported-files/681140#6811400Answer by Preet Sangha for MSBuild, properties and imported filesPreet Sangha2009-03-25T11:17:39Z2009-03-25T11:17:39Z<p>Sorry its a bit confusing: </p>
<p>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 </p>
<pre><code><exec ... setx.exe Propertyname SomeValue.... /> in fileA and the $(Propertyname) in FileB
</code></pre>