4 implementations of AllowFailureWithoutError
Microsoft.Build (1)
BackEnd\Components\RequestBuilder\TaskHost.cs (1)
699
public bool
AllowFailureWithoutError
{ get; set; } = false;
Microsoft.Build.Tasks.Core (1)
AssemblyDependency\Node\RarNodeBuildEngine.cs (1)
81
public bool
AllowFailureWithoutError
{ get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
Microsoft.Build.UnitTests.Shared (1)
MockEngine.cs (1)
56
public bool
AllowFailureWithoutError
{ get; set; } = false;
MSBuild (1)
OutOfProcTaskHostNode.cs (1)
315
public bool
AllowFailureWithoutError
{ get; set; } = false;
1 reference to AllowFailureWithoutError
Microsoft.Build (1)
BackEnd\Components\RequestBuilder\TaskBuilder.cs (1)
981
if (be is IBuildEngine7 be7 && be7.
AllowFailureWithoutError
)