2 writes to _currentConfiguration
MSBuild (2)
OutOfProcTaskHostNode.cs (2)
723
_currentConfiguration
= taskHostConfiguration;
751
_currentConfiguration
= null;
18 references to _currentConfiguration
MSBuild (18)
OutOfProcTaskHostNode.cs (18)
217
ErrorUtilities.VerifyThrow(
_currentConfiguration
!= null, "We should never have a null configuration during a BuildEngine callback!");
218
return
_currentConfiguration
.ContinueOnError;
229
ErrorUtilities.VerifyThrow(
_currentConfiguration
!= null, "We should never have a null configuration during a BuildEngine callback!");
230
return
_currentConfiguration
.LineNumberOfTask;
241
ErrorUtilities.VerifyThrow(
_currentConfiguration
!= null, "We should never have a null configuration during a BuildEngine callback!");
242
return
_currentConfiguration
.ColumnNumberOfTask;
253
ErrorUtilities.VerifyThrow(
_currentConfiguration
!= null, "We should never have a null configuration during a BuildEngine callback!");
254
return
_currentConfiguration
.ProjectFileOfTask;
496
return new Dictionary<string, string>(
_currentConfiguration
.GlobalProperties);
539
ErrorUtilities.VerifyThrow(_taskHost.
_currentConfiguration
!= null, "We should never have a null configuration during a BuildEngine callback!");
540
return _taskHost.
_currentConfiguration
.IsTaskInputLoggingEnabled;
1197
LogMessagePacket logMessage = new LogMessagePacket(new KeyValuePair<int, BuildEventArgs>(
_currentConfiguration
.NodeId, e));
1207
ErrorUtilities.VerifyThrow(
_currentConfiguration
!= null, "We should never have a null configuration when we're trying to log messages!");
1213
_currentConfiguration
.TaskName,
1224
ErrorUtilities.VerifyThrow(
_currentConfiguration
!= null, "We should never have a null configuration when we're trying to log warnings!");
1237
_currentConfiguration
.TaskName);
1247
ErrorUtilities.VerifyThrow(
_currentConfiguration
!= null, "We should never have a null configuration when we're trying to log errors!");
1260
_currentConfiguration
.TaskName);