Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/Framework/TaskEnvironment.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,13 @@
{
_driver = driver;
}

/// <summary>
/// Initializes a new instance of the TaskEnvironment class using the default multi-process execution mode.
/// This mode directly accesses the system environment variables and current working directory.
/// </summary>
public TaskEnvironment() : this(MultiProcessTaskEnvironmentDriver.Instance)

Check failure on line 29 in src/Framework/TaskEnvironment.cs

View check run for this annotation

Azure Pipelines / msbuild-pr (Source-Build (Managed))

src/Framework/TaskEnvironment.cs#L29

src/Framework/TaskEnvironment.cs(29,41): error CS0103: (NETCORE_ENGINEERING_TELEMETRY=Build) The name 'MultiProcessTaskEnvironmentDriver' does not exist in the current context

Check failure on line 29 in src/Framework/TaskEnvironment.cs

View check run for this annotation

Azure Pipelines / msbuild-pr (Linux Core)

src/Framework/TaskEnvironment.cs#L29

src/Framework/TaskEnvironment.cs(29,41): error CS0103: (NETCORE_ENGINEERING_TELEMETRY=Build) The name 'MultiProcessTaskEnvironmentDriver' does not exist in the current context

Check failure on line 29 in src/Framework/TaskEnvironment.cs

View check run for this annotation

Azure Pipelines / msbuild-pr (Linux Core)

src/Framework/TaskEnvironment.cs#L29

src/Framework/TaskEnvironment.cs(29,41): error CS0103: (NETCORE_ENGINEERING_TELEMETRY=Build) The name 'MultiProcessTaskEnvironmentDriver' does not exist in the current context

Check failure on line 29 in src/Framework/TaskEnvironment.cs

View check run for this annotation

Azure Pipelines / msbuild-pr (Linux Core Multithreaded Mode)

src/Framework/TaskEnvironment.cs#L29

src/Framework/TaskEnvironment.cs(29,41): error CS0103: (NETCORE_ENGINEERING_TELEMETRY=Build) The name 'MultiProcessTaskEnvironmentDriver' does not exist in the current context

Check failure on line 29 in src/Framework/TaskEnvironment.cs

View check run for this annotation

Azure Pipelines / msbuild-pr (Linux Core Multithreaded Mode)

src/Framework/TaskEnvironment.cs#L29

src/Framework/TaskEnvironment.cs(29,41): error CS0103: (NETCORE_ENGINEERING_TELEMETRY=Build) The name 'MultiProcessTaskEnvironmentDriver' does not exist in the current context

Check failure on line 29 in src/Framework/TaskEnvironment.cs

View check run for this annotation

Azure Pipelines / msbuild-pr (macOS Core)

src/Framework/TaskEnvironment.cs#L29

src/Framework/TaskEnvironment.cs(29,41): error CS0103: (NETCORE_ENGINEERING_TELEMETRY=Build) The name 'MultiProcessTaskEnvironmentDriver' does not exist in the current context

Check failure on line 29 in src/Framework/TaskEnvironment.cs

View check run for this annotation

Azure Pipelines / msbuild-pr (macOS Core)

src/Framework/TaskEnvironment.cs#L29

src/Framework/TaskEnvironment.cs(29,41): error CS0103: (NETCORE_ENGINEERING_TELEMETRY=Build) The name 'MultiProcessTaskEnvironmentDriver' does not exist in the current context

Check failure on line 29 in src/Framework/TaskEnvironment.cs

View check run for this annotation

Azure Pipelines / msbuild-pr

src/Framework/TaskEnvironment.cs#L29

src/Framework/TaskEnvironment.cs(29,41): error CS0103: (NETCORE_ENGINEERING_TELEMETRY=Build) The name 'MultiProcessTaskEnvironmentDriver' does not exist in the current context

Check failure on line 29 in src/Framework/TaskEnvironment.cs

View check run for this annotation

Azure Pipelines / msbuild-pr

src/Framework/TaskEnvironment.cs#L29

src/Framework/TaskEnvironment.cs(29,41): error CS0103: (NETCORE_ENGINEERING_TELEMETRY=Build) The name 'MultiProcessTaskEnvironmentDriver' does not exist in the current context

Check failure on line 29 in src/Framework/TaskEnvironment.cs

View check run for this annotation

Azure Pipelines / msbuild-pr

src/Framework/TaskEnvironment.cs#L29

src/Framework/TaskEnvironment.cs(29,41): error CS0103: (NETCORE_ENGINEERING_TELEMETRY=Build) The name 'MultiProcessTaskEnvironmentDriver' does not exist in the current context
Comment thread
AR-May marked this conversation as resolved.
Outdated
{ }
Comment thread
AR-May marked this conversation as resolved.
Outdated
Comment thread
AR-May marked this conversation as resolved.
Outdated

/// <summary>
/// Gets or sets the project directory for the task execution.
Expand Down
Loading