2 writes to _currentConfiguration
MSBuildTaskHost (2)
OutOfProcTaskHostNode.cs (2)
732
_currentConfiguration
= taskHostConfiguration;
760
_currentConfiguration
= null;
15 references to _currentConfiguration
MSBuildTaskHost (15)
OutOfProcTaskHostNode.cs (15)
216
ErrorUtilities.VerifyThrow(
_currentConfiguration
!= null, "We should never have a null configuration during a BuildEngine callback!");
217
return
_currentConfiguration
.ContinueOnError;
228
ErrorUtilities.VerifyThrow(
_currentConfiguration
!= null, "We should never have a null configuration during a BuildEngine callback!");
229
return
_currentConfiguration
.LineNumberOfTask;
240
ErrorUtilities.VerifyThrow(
_currentConfiguration
!= null, "We should never have a null configuration during a BuildEngine callback!");
241
return
_currentConfiguration
.ColumnNumberOfTask;
252
ErrorUtilities.VerifyThrow(
_currentConfiguration
!= null, "We should never have a null configuration during a BuildEngine callback!");
253
return
_currentConfiguration
.ProjectFileOfTask;
1207
LogMessagePacket logMessage = new LogMessagePacket(new KeyValuePair<int, BuildEventArgs>(
_currentConfiguration
.NodeId, e));
1217
ErrorUtilities.VerifyThrow(
_currentConfiguration
!= null, "We should never have a null configuration when we're trying to log messages!");
1223
_currentConfiguration
.TaskName,
1234
ErrorUtilities.VerifyThrow(
_currentConfiguration
!= null, "We should never have a null configuration when we're trying to log warnings!");
1247
_currentConfiguration
.TaskName);
1257
ErrorUtilities.VerifyThrow(
_currentConfiguration
!= null, "We should never have a null configuration when we're trying to log errors!");
1270
_currentConfiguration
.TaskName);