Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions src/Tasks/CombineTargetFrameworkInfoProperties.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ namespace Microsoft.Build.Tasks
/// <summary>
/// Combines items that represent properties and values into an XML representation.
/// </summary>
[MSBuildMultiThreadableTask]
public class CombineTargetFrameworkInfoProperties : TaskExtension
{
/// <summary>
Expand Down
1 change: 1 addition & 0 deletions src/Tasks/CombineXmlElements.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ namespace Microsoft.Build.Tasks
/// <summary>
/// Combines multiple XML elements
/// </summary>
[MSBuildMultiThreadableTask]
public class CombineXmlElements : TaskExtension
{
/// <summary>
Expand Down
1 change: 1 addition & 0 deletions src/Tasks/ErrorFromResources.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ namespace Microsoft.Build.Tasks
/// Task that emits an error given a resource string. Engine will add project file path and line/column
/// information.
/// </summary>
[MSBuildMultiThreadableTask]
public sealed class ErrorFromResources : TaskExtension
{
/// <summary>
Expand Down
1 change: 1 addition & 0 deletions src/Tasks/FindAppConfigFile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ namespace Microsoft.Build.Tasks
/// For compat reasons, it has to follow a particular arbitrary algorithm.
/// It also adds the TargetPath metadata.
/// </summary>
[MSBuildMultiThreadableTask]
public class FindAppConfigFile : TaskExtension
{
// The list to search through
Expand Down
1 change: 1 addition & 0 deletions src/Tasks/FindInvalidProjectReferences.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ namespace Microsoft.Build.Tasks
/// <summary>
/// Returns the reference assembly paths to the various frameworks
/// </summary>
[MSBuildMultiThreadableTask]
public partial class FindInvalidProjectReferences : TaskExtension
{
#region Fields
Expand Down
1 change: 1 addition & 0 deletions src/Tasks/GetCompatiblePlatform.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ namespace Microsoft.Build.Tasks
///
/// See ProjectReference-Protocol.md for details.
/// </summary>
[MSBuildMultiThreadableTask]
public class GetCompatiblePlatform : TaskExtension
{
/// <summary>
Expand Down
Loading