| File: IVbcHostObject4.cs | Web Access |
| Project: src\msbuild\src\Tasks\Microsoft.Build.Tasks.csproj (Microsoft.Build.Tasks.Core) |
// 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 Vbc task to communicate with the IDE. In particular, /// the Vbc 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("2AE3233C-8AB3-48A0-9ED9-6E3545B3C566")] public interface IVbcHostObject4 : IVbcHostObject3 { bool SetVBRuntime(string VBRuntime); } }