How do I find the current file in MSBuild - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T14:00:19Zhttp://stackoverflow.com/feeds/question/927978http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/927978/how-do-i-find-the-current-file-in-msbuild1How do I find the current file in MSBuildVaccano2009-05-29T20:27:16Z2009-09-14T15:41:55Z
<p>I know that the latest book out on MSBuild says this is not possible, but I am sure I have seen a property that points to the current file.</p>
<p>Does anyone know a way to find the current file? (ie When the main MSBuild file imports a secondary file. What is the path to the secondary file from inside that file.)</p>
<p>I am trying to register my file in HKEY_LOCALMACHINE\Software\Microsoft\VisualStudio\8.0\MSBuild\SafeImports, but the path to the file is not constant on each of my coworkers computers and it is imported from several different projects so doing a hard coded relative path is not a good idea either.</p>
<p>If there is a way to get the current working directory that will work too (the working directory switches with each import and I think I could save it off)</p>
http://stackoverflow.com/questions/927978/how-do-i-find-the-current-file-in-msbuild/934798#9347982Answer by Sayed Ibrahim Hashimi for How do I find the current file in MSBuildSayed Ibrahim Hashimi2009-06-01T13:22:41Z2009-06-01T13:22:41Z<p>Hi,
There is not a reliable means to identify the "<strong>current file</strong>". When MSBuild processes a file it can import several other files, the end result is a single in memory complete representation of the file. When the targets are executing they do not know which file they were declared in.</p>
<p>This is why reusable build scripts must be "parameterized" to accept the location to known relative locations. For example if you have a dependency on the location where your folder for 3rd party references are located, the build script which is driving the process must declare that property for you.</p>
http://stackoverflow.com/questions/927978/how-do-i-find-the-current-file-in-msbuild/1422110#14221100Answer by Svante for How do I find the current file in MSBuildSvante2009-09-14T15:00:19Z2009-09-14T15:41:55Z<p>[ Deleted ]</p>