2 writes to _currentConfiguration
MSBuildTaskHost (2)
OutOfProcTaskHostNode.cs (2)
738
_currentConfiguration
= taskHostConfiguration;
766
_currentConfiguration
= null;
15 references to _currentConfiguration
MSBuildTaskHost (15)
OutOfProcTaskHostNode.cs (15)
221
ErrorUtilities.VerifyThrow(
_currentConfiguration
!= null, "We should never have a null configuration during a BuildEngine callback!");
222
return
_currentConfiguration
.ContinueOnError;
233
ErrorUtilities.VerifyThrow(
_currentConfiguration
!= null, "We should never have a null configuration during a BuildEngine callback!");
234
return
_currentConfiguration
.LineNumberOfTask;
245
ErrorUtilities.VerifyThrow(
_currentConfiguration
!= null, "We should never have a null configuration during a BuildEngine callback!");
246
return
_currentConfiguration
.ColumnNumberOfTask;
257
ErrorUtilities.VerifyThrow(
_currentConfiguration
!= null, "We should never have a null configuration during a BuildEngine callback!");
258
return
_currentConfiguration
.ProjectFileOfTask;
1223
LogMessagePacket logMessage = new LogMessagePacket(new KeyValuePair<int, BuildEventArgs>(
_currentConfiguration
.NodeId, e));
1233
ErrorUtilities.VerifyThrow(
_currentConfiguration
!= null, "We should never have a null configuration when we're trying to log messages!");
1239
_currentConfiguration
.TaskName,
1250
ErrorUtilities.VerifyThrow(
_currentConfiguration
!= null, "We should never have a null configuration when we're trying to log warnings!");
1263
_currentConfiguration
.TaskName);
1273
ErrorUtilities.VerifyThrow(
_currentConfiguration
!= null, "We should never have a null configuration when we're trying to log errors!");
1286
_currentConfiguration
.TaskName);