11 instantiations of VBCodeProvider
PresentationBuildTasks (1)
BuildTasks\Ms\Internal\MarkupCompiler\MarkupCompiler.cs (1)
2074_codeProvider = new Microsoft.VisualBasic.VBCodeProvider();
System.Data.Entity.Design (4)
System\Data\Entity\Design\EntityCodeGenerator.cs (2)
523Type type = CreateCodeGeneratorType(new Microsoft.VisualBasic.VBCodeProvider(), VBTemplateCodeGenResourceV2, VBTemplateCodeGenTypeName); 534Type type = CreateCodeGeneratorType(new Microsoft.VisualBasic.VBCodeProvider(), VBTemplateCodeGenResourceV3, VBTemplateCodeGenV3TypeName);
System\Data\Entity\Design\EntityViewGeneration\EntityViewGenerator.cs (1)
295provider = new Microsoft.VisualBasic.VBCodeProvider();
System\Data\EntityModel\Emitters\ClientApiGenerator.cs (1)
96provider = new Microsoft.VisualBasic.VBCodeProvider();
System.Data.Services.Design (1)
System\Data\EntityModel\Emitters\ClientApiGenerator.cs (1)
255provider = new Microsoft.VisualBasic.VBCodeProvider();
System.Data.SqlXml (1)
System\Xml\Xsl\XsltOld\Compiler.cs (1)
733lang == ScriptingLanguage.VisualBasic ? (CodeDomProvider) new Microsoft.VisualBasic.VBCodeProvider() :
System.Management (1)
WmiGenerator.cs (1)
4945cp = new VBCodeProvider();
System.Workflow.Activities (1)
Common\CompilerHelpers.cs (1)
64provider = new VBCodeProvider();
System.Workflow.ComponentModel (1)
Shared\CompilerHelpers.cs (1)
62provider = new VBCodeProvider();
System.WorkflowServices (1)
System\Workflow\Activities\Design\ServiceOperationDetailViewControl.cs (1)
273vbProvider = new VBCodeProvider();
20 references to VBCodeProvider
System.Activities.Presentation (3)
System.Activities.Presentation\System\Activities\Presentation\View\VBIdentifierName.cs (3)
29static VBCodeProvider vbProvider; 36VBCodeProvider VBProvider 42vbProvider = CodeDomProvider.CreateProvider("VisualBasic") as VBCodeProvider;
System.Data (3)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\VBIdentifierName.cs (3)
29static VBCodeProvider vbProvider; 36VBCodeProvider VBProvider 42vbProvider = CodeDomProvider.CreateProvider("VisualBasic") as VBCodeProvider;
System.Data.SqlXml (1)
System\Xml\Xsl\Xslt\Scripts.cs (1)
212isVB = provider is Microsoft.VisualBasic.VBCodeProvider;
System.Web (7)
Compilation\AssemblyBuilder.cs (4)
815else if (codeDomProviderType == typeof(Microsoft.VisualBasic.VBCodeProvider)) { 861codeDomProviderType != typeof(Microsoft.VisualBasic.VBCodeProvider)) 877if (codeDomProviderType == typeof(Microsoft.VisualBasic.VBCodeProvider) || 886if (codeDomProviderType == typeof(Microsoft.VisualBasic.VBCodeProvider))
Compilation\BaseCodeDomTreeGenerator.cs (1)
307if (_codeDomProvider is Microsoft.VisualBasic.VBCodeProvider)
Compilation\CompilationUtil.cs (1)
55return new CompilerType(typeof(Microsoft.VisualBasic.VBCodeProvider), null);
Compilation\MultiTargetingUtil.cs (1)
344return CompilationUtil.GetCompilerVersion(typeof(VBCodeProvider));
System.Workflow.Activities (2)
Common\CompilerHelpers.cs (2)
63else if (type == typeof(VBCodeProvider)) 122return GetCodeProviderInstance(typeof(VBCodeProvider), compilerVersion);
System.Workflow.ComponentModel (4)
AuthoringOM\Compiler\CompileXomlTask.cs (1)
566codeProvider = CompilerHelpers.CreateCodeProviderInstance(typeof(VBCodeProvider), compilerParameters.CompilerVersion);
AuthoringOM\Design\IdentifierCreationService.cs (1)
46this.provider = CompilerHelpers.CreateCodeProviderInstance(typeof(VBCodeProvider));
Shared\CompilerHelpers.cs (2)
61else if (type == typeof(VBCodeProvider)) 120return GetCodeProviderInstance(typeof(VBCodeProvider), compilerVersion);