/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/VisualStudio/VisualBasic/Impl/ProjectSystemShim/Interop/IVbCompilerHost.vb
27 строк
1 KB
Cyrus Najmabadi
Organize VB imports
27 июн 2025, 21:53
27 июн 2025, 21:53
e9c47fd
Код
Авторство
О чём код?
' Licensed to the .NET Foundation under one or more agreements. ' The .NET Foundation licenses this file to you under the MIT license. ' See the LICENSE file in the project root for more information. Imports System.Runtime.InteropServices Namespace Microsoft.VisualStudio.LanguageServices.VisualBasic.ProjectSystemShim.Interop <Guid("782CB503-84B1-4b8f-9AAD-A12B75905015"), ComImport(), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)> Friend Interface IVbCompilerHost ''' <summary> ''' Output a string to the standard output (console, file, pane, etc.) ''' </summary> Sub OutputString(<MarshalAs(UnmanagedType.LPWStr)> [string] As String) ''' <summary> ''' Returns the system SDK directory, where mscorlib.dll and Microsoft.VisualBasic.dll is ''' located. ''' </summary> <PreserveSig> Function GetSdkPath(<MarshalAs(UnmanagedType.BStr), Out> ByRef sdkPath As String) As Integer ''' <summary> ''' Get the target library type. ''' </summary> Function GetTargetLibraryType() As VBTargetLibraryType End Interface End Namespace