3 writes to InputFiles
Microsoft.Build.Tasks.Core (3)
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, " ");