2 writes to _currentConfiguration
MSBuildTaskHost (2)
OutOfProcTaskHostNode.cs (2)
437_currentConfiguration = taskHostConfiguration; 470_currentConfiguration = null;
17 references to _currentConfiguration
MSBuildTaskHost (17)
OutOfProcTaskHostNode.cs (17)
173ErrorUtilities.VerifyThrow(_currentConfiguration != null, "We should never have a null configuration during a BuildEngine callback!"); 174return _currentConfiguration.ContinueOnError; 185ErrorUtilities.VerifyThrow(_currentConfiguration != null, "We should never have a null configuration during a BuildEngine callback!"); 186return _currentConfiguration.LineNumberOfTask; 197ErrorUtilities.VerifyThrow(_currentConfiguration != null, "We should never have a null configuration during a BuildEngine callback!"); 198return _currentConfiguration.ColumnNumberOfTask; 209ErrorUtilities.VerifyThrow(_currentConfiguration != null, "We should never have a null configuration during a BuildEngine callback!"); 210return _currentConfiguration.ProjectFileOfTask; 850ErrorUtilities.VerifyThrow(_currentConfiguration != null, $"{nameof(_currentConfiguration)} is null."); 862LogMessagePacketBase logMessage = new(new KeyValuePair<int, BuildEventArgs>(_currentConfiguration.NodeId, e)); 872ErrorUtilities.VerifyThrow(_currentConfiguration != null, "We should never have a null configuration when we're trying to log messages!"); 877_currentConfiguration.TaskName, 888ErrorUtilities.VerifyThrow(_currentConfiguration != null, "We should never have a null configuration when we're trying to log warnings!"); 900senderName: _currentConfiguration.TaskName); 910ErrorUtilities.VerifyThrow(_currentConfiguration != null, "We should never have a null configuration when we're trying to log errors!"); 922senderName: _currentConfiguration.TaskName);