2 writes to _currentConfiguration
MSBuild (2)
OutOfProcTaskHostNode.cs (2)
867
_currentConfiguration
= taskHostConfiguration;
895
_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;
529
return new Dictionary<string, string>(
_currentConfiguration
.GlobalProperties);
589
ErrorUtilities.VerifyThrow(_taskHost.
_currentConfiguration
!= null, "We should never have a null configuration during a BuildEngine callback!");
590
return _taskHost.
_currentConfiguration
.IsTaskInputLoggingEnabled;
1359
LogMessagePacketBase logMessage = new(new KeyValuePair<int, BuildEventArgs>(
_currentConfiguration
.NodeId, e));
1369
ErrorUtilities.VerifyThrow(
_currentConfiguration
!= null, "We should never have a null configuration when we're trying to log messages!");
1375
_currentConfiguration
.TaskName,
1386
ErrorUtilities.VerifyThrow(
_currentConfiguration
!= null, "We should never have a null configuration when we're trying to log warnings!");
1399
_currentConfiguration
.TaskName);
1409
ErrorUtilities.VerifyThrow(
_currentConfiguration
!= null, "We should never have a null configuration when we're trying to log errors!");
1422
_currentConfiguration
.TaskName);