File: BackEnd\CustomLogAndReturnTask.cs
Web Access
Project: ..\..\..\src\Build.UnitTests\Microsoft.Build.Engine.UnitTests.csproj (Microsoft.Build.Engine.UnitTests)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using Microsoft.Build.Framework;
using Microsoft.Build.Utilities;
#nullable disable
 
namespace Microsoft.Build.UnitTests
{
    public class CustomLogAndReturnTask : Task
    {
        public string WarningCode { get; set; }
 
        public string ErrorCode { get; set; }
 
        public bool ReturnHasLoggedErrors { get; set; }
 
        [Required]
        public bool Return { get; set; }
 
        // Unused for now, created for task batching.
        public ITaskItem[] Sources { get; set; }
 
        /// <summary>
        /// This task returns and logs what you want based on the running test.
        /// </summary>
        public override bool Execute()
        {
            if (!string.IsNullOrEmpty(WarningCode))
            {
                Log.LogWarning(null, WarningCode, null, null, 0, 0, 0, 0, "Warning Logged!", null);
            }
 
            if (!string.IsNullOrEmpty(ErrorCode))
            {
                Log.LogError(null, ErrorCode, null, null, 0, 0, 0, 0, "Error Logged!", null);
            }
            return ReturnHasLoggedErrors ? !Log.HasLoggedErrors : Return;
        }
    }
}