* xbuild/Microsoft.Common.targets: Emit list of files written
[mono.git] / mcs / tools / xbuild / xbuild / Microsoft.Common.targets
index 9385200805e78666b50ee6ecce56a0fd3f6df0bf..94c1315d41ef8aafcf72d0ac44bc780cfca66bea 100644 (file)
        <Target Name="_RecordCleanFile"
                DependsOnTargets="_GetCompileOutputsForClean">
                <WriteLinesToFile
-                       File="$(BaseIntermediateOutputPath)$(CleanFile)"
+                       File="$(IntermediateOutputPath)$(CleanFile)"
                        Lines="@(FileWrites->'%(FullPath)')"
                        Overwrite="true"/>
        </Target>
        <!-- Get the list of files written, for clean -->
        <Target Name="_GetCleanFileWrites"
                DependsOnTargets="_GetCompileOutputsForClean">
-               <ReadLinesFromFile File="$(BaseIntermediateOutputPath)$(CleanFile)">
+               <ReadLinesFromFile File="$(IntermediateOutputPath)$(CleanFile)">
                        <Output TaskParameter="Lines" ItemName="FileWrites"/>
                </ReadLinesFromFile>
        </Target>