/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/VisualStudio/VisualBasic/Impl/ProjectSystemShim/TempPECompilerFactory.vb
21 строка
837 B
Jason Malinowski
Don't reference the implementation type directly if we don't need it
23 янв 2021, 00:39
23 янв 2021, 00:39
91eb97e
Код
Авторство
О чём код?
' 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 Microsoft.VisualStudio.LanguageServices.VisualBasic.ProjectSystemShim.Interop Namespace Microsoft.VisualStudio.LanguageServices.VisualBasic.ProjectSystemShim Friend Class TempPECompilerFactory Implements IVbTempPECompilerFactory Private ReadOnly _workspace As VisualStudioWorkspace Public Sub New(workspace As VisualStudioWorkspace) Me._workspace = workspace End Sub Public Function CreateCompiler() As IVbCompiler Implements IVbTempPECompilerFactory.CreateCompiler Return New TempPECompiler(_workspace) End Function End Class End Namespace