/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/VisualStudio/VisualBasic/Impl/ProjectSystemShim/Interop/IVbBuildStatusCallback.vb
33 строки
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("45171DA0-7824-11d2-99C3-00C04F86DC69"), ComImport(), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)> Friend Interface IVbBuildStatusCallback ''' <summary> ''' Notification that the build is beginning. If the build needs to be stopped, then the ''' callee should set pfContinue to false. ''' </summary> Sub BuildBegin(ByRef pfContinue As Boolean) ''' <summary> ''' If a build or clean has completed, fSuccess specifies if it completed successfully. ''' </summary> Sub BuildEnd(fSuccess As Boolean) ''' <summary> ''' Called every once in a while between BuildBegin and BuildEnd. ''' </summary> Sub TickEx(ByRef pfContinue As Boolean, cItemsLeft As UInteger, cItemsTotal As UInteger) ''' <summary> ''' Called every time the project reaches bound state. ''' </summary> Sub ProjectBound() End Interface End Namespace