28 references to EmbedVbCoreRuntime
Microsoft.CodeAnalysis.VisualBasic (25)
Binding\Binder.vb (2)
606
useSiteInfo = GetUseSiteInfoForWellKnownTypeMember(memberSymbol, member, compilation.Options.
EmbedVbCoreRuntime
)
1105
Dim useSiteInfo As UseSiteInfo(Of AssemblySymbol) = GetUseSiteInfoForWellKnownTypeMember(memberSymbol, attributeCtor, compilation.Options.
EmbedVbCoreRuntime
)
Binding\Binder_Expressions.vb (1)
2500
If IdentifierComparison.Equals(MissingRuntimeMemberDiagnosticHelper.MyVBNamespace, name) AndAlso Me.Compilation.Options.
EmbedVbCoreRuntime
Then
Binding\Binder_Lookup.vb (1)
171
If Not Me.Compilation.Options.
EmbedVbCoreRuntime
Then
Compilation\VisualBasicCompilation.vb (9)
243
If compilationOptions.
EmbedVbCoreRuntime
OrElse compilationOptions.SuppressEmbeddedDeclarations Then
302
Dim embedded = If(Options.
EmbedVbCoreRuntime
, EmbeddedSymbolKind.VbCore, EmbeddedSymbolKind.None) Or
647
ElseIf Me.Options.
EmbedVbCoreRuntime
<> newOptions.
EmbedVbCoreRuntime
OrElse Me.Options.ParseOptions <> newOptions.ParseOptions Then
764
WriteValue(builder, CompilationOptionNames.EmbedRuntime, Options.
EmbedVbCoreRuntime
.ToString())
1132
Return If(compilation.Options.
EmbedVbCoreRuntime
Or compilation.IncludeInternalXmlHelper,
1138
Return If(compilation.Options.
EmbedVbCoreRuntime
Or compilation.IncludeInternalXmlHelper,
1145
Return If(compilation.Options.
EmbedVbCoreRuntime
,
1151
Return If(compilation.Options.
EmbedVbCoreRuntime
,
Compilation\VisualBasicDeterministicKeyBuilder.vb (1)
77
writer.Write("embedVbCoreRuntime", basicOptions.
EmbedVbCoreRuntime
)
Lowering\LocalRewriter\LocalRewriter.vb (2)
587
Return ReportMissingOrBadRuntimeHelper(node, specialMember, memberSymbol, Me._diagnostics, _compilationState.Compilation.Options.
EmbedVbCoreRuntime
)
618
Return ReportMissingOrBadRuntimeHelper(node, wellKnownMember, memberSymbol, Me._diagnostics, _compilationState.Compilation.Options.
EmbedVbCoreRuntime
)
Lowering\LocalRewriter\LocalRewriter_RaiseEvent.vb (1)
161
Dim info = GetDiagnosticForMissingRuntimeHelper(memberDescriptor.DeclaringTypeMetadataName, accessorName, _compilationState.Compilation.Options.
EmbedVbCoreRuntime
)
Lowering\SyntheticBoundNodeFactory.vb (1)
267
useSiteInfo = New UseSiteInfo(Of AssemblySymbol)(GetDiagnosticForMissingRuntimeHelper(memberDescriptor.DeclaringTypeMetadataName, memberDescriptor.Name, CompilationState.Compilation.Options.
EmbedVbCoreRuntime
))
Symbols\AnonymousTypes\AnonymousType_SymbolCollection.vb (1)
32
Dim vbEmbedRuntime = Compilation.Options.
EmbedVbCoreRuntime
VisualBasicCompilationOptions.vb (6)
310
embedVbCoreRuntime:=other.
EmbedVbCoreRuntime
,
628
If value = Me.
EmbedVbCoreRuntime
Then
1030
If Me.
EmbedVbCoreRuntime
AndAlso Me.OutputKind.IsNetModule() Then
1100
Me.
EmbedVbCoreRuntime
= other.
EmbedVbCoreRuntime
AndAlso
1127
Hash.Combine(Me.
EmbedVbCoreRuntime
,
Microsoft.CodeAnalysis.VisualBasic.Semantic.UnitTests (1)
Compilation\VisualBasicCompilationOptionsTests.vb (1)
105
TestProperty(Function(old, value) old.WithEmbedVbCoreRuntime(value), Function(opt) opt.
EmbedVbCoreRuntime
, True)
Microsoft.CodeAnalysis.VisualBasic.Workspaces (1)
Serialization\VisualBasicOptionsSerializationService.vb (1)
32
writer.WriteBoolean(vbOptions.
EmbedVbCoreRuntime
)
Microsoft.CodeAnalysis.Workspaces.MSBuild.UnitTests (1)
VisualStudioMSBuildWorkspaceTests.cs (1)
1690
await AssertVBCompilationOptionsAsync(true, options => options.
EmbedVbCoreRuntime
);