3 writes to InputFiles
Microsoft.Build.Tasks.Core (3)
GenerateResource.cs (3)
1159resGen.InputFiles = inputsToProcess.ToArray(); 1196resGen.InputFiles = inputsToProcess.GetRange(initialResourceIndex, numberOfResourcesToAdd).ToArray(); 1273resGen.InputFiles = inputsToProcess.ToArray();
13 references to InputFiles
Microsoft.Build.Tasks.Core (13)
ResGen.cs (13)
101get => (ITaskItem[])Bag[nameof(InputFiles)]; 102set => Bag[nameof(InputFiles)] = value; 221if (IsNullOrEmpty(InputFiles)) 366ErrorUtilities.VerifyThrow(!IsNullOrEmpty(InputFiles), "If InputFiles is empty, the task should have returned before reaching this point"); 405ErrorUtilities.VerifyThrow(!IsNullOrEmpty(InputFiles), "If InputFiles is empty, the task should have returned before reaching this point"); 408if (!IsNullOrEmpty(OutputFiles) && (OutputFiles.Length != InputFiles.Length)) 410Log.LogErrorWithCodeFromResources("General.TwoVectorsMustHaveSameLength", InputFiles.Length, OutputFiles.Length, "InputFiles", "OutputFiles"); 420if (InputFiles.Length != 1) 474ErrorUtilities.VerifyThrow(!IsNullOrEmpty(InputFiles), "If InputFiles is empty, the task should have returned before reaching this point"); 476ITaskItem[] inputFiles = InputFiles; 582if (InputFiles?.Length > 0) 584ITaskItem[] inputFiles = InputFiles; 613resGenArguments.AppendFileNamesIfNotNull(InputFiles, " ");