MSBuild, properties and imported files - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T09:23:27Z http://stackoverflow.com/feeds/question/680880 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/680880/msbuild-properties-and-imported-files 0 MSBuild, properties and imported files Draco 2009-03-25T09:43:10Z 2009-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#681140 0 Answer by Preet Sangha for MSBuild, properties and imported files Preet Sangha 2009-03-25T11:17:39Z 2009-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 &amp; 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>&lt;exec ... setx.exe Propertyname SomeValue.... /&gt; in fileA and the $(Propertyname) in FileB </code></pre>