2 writes to _currentConfiguration
MSBuild (2)
OutOfProcTaskHostNode.cs (2)
738
_currentConfiguration
= taskHostConfiguration;
766
_currentConfiguration
= null;
18 references to _currentConfiguration
MSBuild (18)
OutOfProcTaskHostNode.cs (18)
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;
500
return new Dictionary<string, string>(
_currentConfiguration
.GlobalProperties);
543
ErrorUtilities.VerifyThrow(_taskHost.
_currentConfiguration
!= null, "We should never have a null configuration during a BuildEngine callback!");
544
return _taskHost.
_currentConfiguration
.IsTaskInputLoggingEnabled;
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);