2 writes to _currentConfiguration
MSBuildTaskHost (2)
OutOfProcTaskHostNode.cs (2)
723
_currentConfiguration
= taskHostConfiguration;
751
_currentConfiguration
= null;
15 references to _currentConfiguration
MSBuildTaskHost (15)
OutOfProcTaskHostNode.cs (15)
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;
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);