/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/VisualStudio/VisualBasic/Impl/LanguageService/IVbCompilerService.vb
17 строк
912 B
Jonathon Marolf
update headers
23 янв 2020, 04:01
Не верифицирован
23 янв 2020, 04:01
91571a3
Код
Авторство
О чём код?
' 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 ''' <summary> ''' A dummy interface with the same GUID as the legacy SID_SVisualBasicCompiler. This is needed so the managed ''' package framework can properly expose the service, since we need _some_ type to give for the ProvideService ''' attribute. We need our package to have a different GUID than this service, but they need to be implemented by ''' the same object since some project systems (Venus) assume we are implemented this way. ''' </summary> <Guid(Guids.VisualBasicCompilerServiceIdString)> Friend Interface IVbCompilerService End Interface End Namespace