9 references to EnvironmentVariableReadEventArgs
Microsoft.Build (6)
Definition\ProjectProperty.cs (2)
108
EnvironmentVariableReadEventArgs args =
new
(Name, EvaluatedValueEscapedInternal, string.Empty, 0, 0);
127
EnvironmentVariableReadEventArgs args =
new
(Name, EvaluatedValueEscapedInternal, location.File, location.Line, location.Column);
Evaluation\PropertyTrackingEvaluatorDataWrapper.cs (1)
217
var args = new
EnvironmentVariableReadEventArgs
(
Instance\ProjectPropertyInstance.cs (2)
104
EnvironmentVariableReadEventArgs args =
new
(Name, _escapedValue, string.Empty, 0, 0);
118
EnvironmentVariableReadEventArgs args =
new
(Name, _escapedValue, location.File, location.Line, location.Column);
Logging\BinaryLogger\BuildEventArgsReader.cs (1)
1145
BuildEventArgs e = new
EnvironmentVariableReadEventArgs
(
Microsoft.Build.Engine.UnitTests (3)
BackEnd\NodePackets_Tests.cs (2)
78
EnvironmentVariableReadEventArgs environmentVariableRead =
new
("env", "message", "file", 0, 0);
262
new
EnvironmentVariableReadEventArgs
("env", "message", "file", 0, 0) { BuildEventContext = new BuildEventContext(1, 2, 3, 4, 5, 6) },
BuildEventArgsSerialization_Tests.cs (1)
265
EnvironmentVariableReadEventArgs args =
new
("VarName", "VarValue", "file", 10, 20);