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