5 references to OutputDirectory
Microsoft.Build.Tasks.Core (5)
WriteCodeFragment.cs (5)
90
if (OutputFile == null &&
OutputDirectory
== null)
113
if (OutputFile != null &&
OutputDirectory
!= null && !Path.IsPathRooted(OutputFile.ItemSpec))
115
OutputFile = new TaskItem(Path.Combine(
OutputDirectory
.ItemSpec, OutputFile.ItemSpec));
124
AbsolutePath outputDirectoryPath = TaskEnvironment.GetAbsolutePath(
OutputDirectory
.ItemSpec);
126
OutputFile = new TaskItem(Path.Combine(
OutputDirectory
.ItemSpec, Path.GetFileName(outputFilePath.Value)));