2 writes to _currentConfiguration
MSBuild (2)
OutOfProcTaskHostNode.cs (2)
874
_currentConfiguration
= taskHostConfiguration;
902
_currentConfiguration
= null;
18 references to _currentConfiguration
MSBuild (18)
OutOfProcTaskHostNode.cs (18)
243
ErrorUtilities.VerifyThrow(
_currentConfiguration
!= null, "We should never have a null configuration during a BuildEngine callback!");
244
return
_currentConfiguration
.ContinueOnError;
255
ErrorUtilities.VerifyThrow(
_currentConfiguration
!= null, "We should never have a null configuration during a BuildEngine callback!");
256
return
_currentConfiguration
.LineNumberOfTask;
267
ErrorUtilities.VerifyThrow(
_currentConfiguration
!= null, "We should never have a null configuration during a BuildEngine callback!");
268
return
_currentConfiguration
.ColumnNumberOfTask;
279
ErrorUtilities.VerifyThrow(
_currentConfiguration
!= null, "We should never have a null configuration during a BuildEngine callback!");
280
return
_currentConfiguration
.ProjectFileOfTask;
536
return new Dictionary<string, string>(
_currentConfiguration
.GlobalProperties);
596
ErrorUtilities.VerifyThrow(_taskHost.
_currentConfiguration
!= null, "We should never have a null configuration during a BuildEngine callback!");
597
return _taskHost.
_currentConfiguration
.IsTaskInputLoggingEnabled;
1366
LogMessagePacketBase logMessage = new(new KeyValuePair<int, BuildEventArgs>(
_currentConfiguration
.NodeId, e));
1376
ErrorUtilities.VerifyThrow(
_currentConfiguration
!= null, "We should never have a null configuration when we're trying to log messages!");
1382
_currentConfiguration
.TaskName,
1393
ErrorUtilities.VerifyThrow(
_currentConfiguration
!= null, "We should never have a null configuration when we're trying to log warnings!");
1406
_currentConfiguration
.TaskName);
1416
ErrorUtilities.VerifyThrow(
_currentConfiguration
!= null, "We should never have a null configuration when we're trying to log errors!");
1429
_currentConfiguration
.TaskName);