|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Runtime.InteropServices;
#nullable disable
namespace Microsoft.Build.Tasks.Hosting
{
/// <summary>
/// Defines an interface for the Csc task to communicate with the IDE. In particular,
/// the Csc task will delegate the actual compilation to the IDE, rather than shelling
/// out to the command-line compilers.
/// </summary>
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
[ComVisible(true)]
[Guid("0DDB496F-C93C-492C-87F1-90B6FDBAA833")]
public interface ICscHostObject4 : ICscHostObject3
{
bool SetPlatformWith32BitPreference(string platformWith32BitPreference);
bool SetHighEntropyVA(bool highEntropyVA);
bool SetSubsystemVersion(string subsystemVersion);
}
}
|