|
// 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 bootstrapRoot, string bootstrapMsbuildBinaryLocation)
: System.Attribute
{
public string BootstrapRoot { get; } = bootstrapRoot;
public string BootstrapMsbuildBinaryLocation { get; } = bootstrapMsbuildBinaryLocation;
}
|