File: BootstrapLocationAttribute.cs
Web Access
Project: ..\..\..\src\UnitTests.Shared\Microsoft.Build.UnitTests.Shared.csproj (Microsoft.Build.UnitTests.Shared)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
global using NativeMethodsShared = Microsoft.Build.Framework.NativeMethods;
 
namespace Microsoft.Build.UnitTests.Shared;
 
[System.AttributeUsage(System.AttributeTargets.Assembly)]
internal sealed class BootstrapLocationAttribute(string bootstrapMsbuildBinaryLocation)
    : System.Attribute
{
    public string BootstrapMsbuildBinaryLocation { get; } = bootstrapMsbuildBinaryLocation;
}