2 writes to _propertiesFromCommandLine
Microsoft.Build (2)
BackEnd\BuildManager\BuildParameters.cs (2)
260
_propertiesFromCommandLine
= projectCollection.PropertiesFromCommandLine;
290
_propertiesFromCommandLine
= other._propertiesFromCommandLine != null ? new HashSet<string>(other._propertiesFromCommandLine, StringComparer.OrdinalIgnoreCase) : null;
3 references to _propertiesFromCommandLine
Microsoft.Build (3)
BackEnd\BuildManager\BuildParameters.cs (3)
290
_propertiesFromCommandLine = other.
_propertiesFromCommandLine
!= null ? new HashSet<string>(other.
_propertiesFromCommandLine
, StringComparer.OrdinalIgnoreCase) : null;
348
public ICollection<string> PropertiesFromCommandLine =>
_propertiesFromCommandLine
;