├── .editorconfig ├── .gitattributes ├── .gitignore ├── .travis.yml ├── .vsts-pipelines └── builds │ ├── ci-internal.yml │ └── ci-public.yml ├── CONTRIBUTING.md ├── Directory.Build.props ├── Directory.Build.targets ├── LICENSE.txt ├── NuGet.config ├── NuGetPackageVerifier.json ├── README.md ├── Razor.sln ├── benchmarks └── Microsoft.AspNetCore.Razor.Performance │ ├── AssemblyInfo.cs │ ├── CodeGenerationBenchmark.cs │ ├── MSN.cshtml │ ├── Microsoft.AspNetCore.Razor.Performance.csproj │ ├── ProjectSystem │ ├── BackgroundCodeGenerationBenchmark.cs │ ├── ProjectLoadBenchmark.cs │ └── ProjectSnapshotManagerBenchmarkBase.cs │ ├── SyntaxTreeGenerationBenckmark.cs │ ├── TagHelperSerializationBenchmark.cs │ ├── readme.md │ └── taghelpers.json ├── korebuild-lock.txt ├── korebuild.json ├── run.cmd ├── run.ps1 ├── run.sh ├── shared └── Microsoft.AspNetCore.Razor.TagHelpers.Testing.Sources │ └── CaseSensitiveBoundAttributeComparer.cs ├── src ├── Directory.Build.props ├── Microsoft.AspNetCore.Mvc.Razor.Extensions.Version1_X │ ├── CSharpIdentifier.cs │ ├── ExtensionInitializer.cs │ ├── IInjectTargetExtension.cs │ ├── IViewComponentTagHelperTargetExtension.cs │ ├── InjectDirective.cs │ ├── InjectIntermediateNode.cs │ ├── InjectTargetExtension.cs │ ├── LegacySectionTargetExtension.cs │ ├── Microsoft.AspNetCore.Mvc.Razor.Extensions.Version1_X.csproj │ ├── ModelDirective.cs │ ├── ModelExpressionPass.cs │ ├── MvcImportProjectFeature.cs │ ├── MvcRazorTemplateEngine.cs │ ├── MvcViewDocumentClassifierPass.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ └── ViewComponentResources.Designer.cs │ ├── RazorExtensions.cs │ ├── RazorExtensionsDiagnosticFactory.cs │ ├── Resources.resx │ ├── TagHelperDescriptorExtensions.cs │ ├── ViewComponentResources.resx │ ├── ViewComponentTagHelperConventions.cs │ ├── ViewComponentTagHelperDescriptorFactory.cs │ ├── ViewComponentTagHelperDescriptorProvider.cs │ ├── ViewComponentTagHelperIntermediateNode.cs │ ├── ViewComponentTagHelperMetadata.cs │ ├── ViewComponentTagHelperPass.cs │ ├── ViewComponentTagHelperTargetExtension.cs │ ├── ViewComponentTypeVisitor.cs │ └── ViewComponentTypes.cs ├── Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X │ ├── AssemblyAttributeInjectionPass.cs │ ├── CSharpIdentifier.cs │ ├── ExtensionInitializer.cs │ ├── IInjectTargetExtension.cs │ ├── IViewComponentTagHelperTargetExtension.cs │ ├── InjectDirective.cs │ ├── InjectIntermediateNode.cs │ ├── InjectTargetExtension.cs │ ├── InstrumentationPass.cs │ ├── Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X.csproj │ ├── ModelDirective.cs │ ├── ModelExpressionPass.cs │ ├── MvcImportProjectFeature.cs │ ├── MvcViewDocumentClassifierPass.cs │ ├── NamespaceDirective.cs │ ├── PageDirective.cs │ ├── PagesPropertyInjectionPass.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ └── ViewComponentResources.Designer.cs │ ├── RazorExtensions.cs │ ├── RazorExtensionsDiagnosticFactory.cs │ ├── RazorPageDocumentClassifierPass.cs │ ├── Resources.resx │ ├── TagHelperDescriptorExtensions.cs │ ├── ViewComponentResources.resx │ ├── ViewComponentTagHelperConventions.cs │ ├── ViewComponentTagHelperDescriptorFactory.cs │ ├── ViewComponentTagHelperDescriptorProvider.cs │ ├── ViewComponentTagHelperIntermediateNode.cs │ ├── ViewComponentTagHelperMetadata.cs │ ├── ViewComponentTagHelperPass.cs │ ├── ViewComponentTagHelperTargetExtension.cs │ ├── ViewComponentTypeVisitor.cs │ ├── ViewComponentTypes.cs │ ├── baseline.netcore.json │ └── baseline.netframework.json ├── Microsoft.AspNetCore.Mvc.Razor.Extensions │ ├── AssemblyAttributeInjectionPass.cs │ ├── ExtensionInitializer.cs │ ├── IInjectTargetExtension.cs │ ├── IViewComponentTagHelperTargetExtension.cs │ ├── InjectDirective.cs │ ├── InjectIntermediateNode.cs │ ├── InjectTargetExtension.cs │ ├── Microsoft.AspNetCore.Mvc.Razor.Extensions.csproj │ ├── ModelDirective.cs │ ├── ModelExpressionPass.cs │ ├── MvcImportProjectFeature.cs │ ├── MvcRazorTemplateEngine.cs │ ├── MvcViewDocumentClassifierPass.cs │ ├── NamespaceDirective.cs │ ├── PageDirective.cs │ ├── PagesPropertyInjectionPass.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ └── ViewComponentResources.Designer.cs │ ├── RazorExtensions.cs │ ├── RazorExtensionsDiagnosticFactory.cs │ ├── RazorPageDocumentClassifierPass.cs │ ├── Resources.resx │ ├── TagHelperDescriptorExtensions.cs │ ├── ViewComponentResources.resx │ ├── ViewComponentTagHelperConventions.cs │ ├── ViewComponentTagHelperDescriptorFactory.cs │ ├── ViewComponentTagHelperDescriptorProvider.cs │ ├── ViewComponentTagHelperIntermediateNode.cs │ ├── ViewComponentTagHelperMetadata.cs │ ├── ViewComponentTagHelperPass.cs │ ├── ViewComponentTagHelperTargetExtension.cs │ ├── ViewComponentTypeVisitor.cs │ ├── ViewComponentTypes.cs │ ├── baseline.netcore.json │ ├── baseline.netframework.json │ ├── breakingchanges.netcore.json │ └── breakingchanges.netframework.json ├── Microsoft.AspNetCore.Razor.Language │ ├── AllowedChildTagDescriptor.cs │ ├── AllowedChildTagDescriptorBuilder.cs │ ├── AllowedChildTagDescriptorComparer.cs │ ├── AssemblyExtension.cs │ ├── AttributeStructure.cs │ ├── BoundAttributeDescriptor.cs │ ├── BoundAttributeDescriptorBuilder.cs │ ├── BoundAttributeDescriptorBuilderExtensions.cs │ ├── BoundAttributeDescriptorComparer.cs │ ├── BoundAttributeDescriptorExtensions.cs │ ├── CSharpIdentifier.cs │ ├── Checksum.cs │ ├── ClassifiedSpanVisitor.cs │ ├── CodeGeneration │ │ ├── CodeRenderingContext.cs │ │ ├── CodeTarget.cs │ │ ├── CodeTargetBuilder.cs │ │ ├── CodeWriter.cs │ │ ├── CodeWriterExtensions.cs │ │ ├── DefaultCodeRenderingContext.cs │ │ ├── DefaultCodeTarget.cs │ │ ├── DefaultCodeTargetBuilder.cs │ │ ├── DefaultDocumentWriter.cs │ │ ├── DesignTimeNodeWriter.cs │ │ ├── DocumentWriter.cs │ │ ├── ICodeTargetExtension.cs │ │ ├── IntermediateNodeWriter.cs │ │ ├── LiteralRuntimeNodeWriter.cs │ │ ├── RuntimeNodeWriter.cs │ │ ├── TagHelperHtmlAttributeRuntimeNodeWriter.cs │ │ └── TagHelperRenderingContext.cs │ ├── Components │ │ ├── CodeGenerationConstants.cs │ │ ├── ComponentDocumentClassifierPass.cs │ │ └── ComponentExtensions.cs │ ├── DefaultAllowedChildTagDescriptor.cs │ ├── DefaultAllowedChildTagDescriptorBuilder.cs │ ├── DefaultBoundAttributeDescriptor.cs │ ├── DefaultBoundAttributeDescriptorBuilder.cs │ ├── DefaultDirectiveSyntaxTreePass.cs │ ├── DefaultDocumentClassifierPass.cs │ ├── DefaultDocumentClassifierPassFeature.cs │ ├── DefaultImportProjectFeature.cs │ ├── DefaultRazorCSharpDocument.cs │ ├── DefaultRazorCSharpLoweringPhase.cs │ ├── DefaultRazorCodeDocument.cs │ ├── DefaultRazorCodeGenerationOptions.cs │ ├── DefaultRazorCodeGenerationOptionsBuilder.cs │ ├── DefaultRazorCodeGenerationOptionsFactoryProjectFeature.cs │ ├── DefaultRazorCodeGenerationOptionsFeature.cs │ ├── DefaultRazorDiagnostic.cs │ ├── DefaultRazorDirectiveClassifierPhase.cs │ ├── DefaultRazorDirectiveFeature.cs │ ├── DefaultRazorDocumentClassifierPhase.cs │ ├── DefaultRazorEngine.cs │ ├── DefaultRazorEngineBuilder.cs │ ├── DefaultRazorIntermediateNodeLoweringPhase.cs │ ├── DefaultRazorOptimizationPhase.cs │ ├── DefaultRazorParserOptions.cs │ ├── DefaultRazorParserOptionsBuilder.cs │ ├── DefaultRazorParserOptionsFactoryProjectFeature.cs │ ├── DefaultRazorParserOptionsFeature.cs │ ├── DefaultRazorParsingPhase.cs │ ├── DefaultRazorProjectEngine.cs │ ├── DefaultRazorProjectEngineBuilder.cs │ ├── DefaultRazorProjectFileSystem.cs │ ├── DefaultRazorProjectItem.cs │ ├── DefaultRazorSourceLineCollection.cs │ ├── DefaultRazorSyntaxTree.cs │ ├── DefaultRazorSyntaxTreePhase.cs │ ├── DefaultRazorTagHelperBinderPhase.cs │ ├── DefaultRazorTargetExtensionFeature.cs │ ├── DefaultRequiredAttributeDescriptor.cs │ ├── DefaultRequiredAttributeDescriptorBuilder.cs │ ├── DefaultTagHelperDescriptor.cs │ ├── DefaultTagHelperDescriptorBuilder.cs │ ├── DefaultTagMatchingRuleDescriptor.cs │ ├── DefaultTagMatchingRuleDescriptorBuilder.cs │ ├── DirectiveDescriptor.cs │ ├── DirectiveDescriptorBuilderExtensions.cs │ ├── DirectiveDescriptorComparer.cs │ ├── DirectiveKind.cs │ ├── DirectiveRemovalOptimizationPass.cs │ ├── DirectiveTokenDescriptor.cs │ ├── DirectiveTokenDescriptorComparer.cs │ ├── DirectiveTokenEditHandler.cs │ ├── DirectiveTokenKind.cs │ ├── DirectiveUsage.cs │ ├── DocumentClassifierPassBase.cs │ ├── EmptyProjectFileSystem.cs │ ├── Extensions │ │ ├── DefaultMetadataIdentifierFeature.cs │ │ ├── DefaultTagHelperBodyIntermediateNode.cs │ │ ├── DefaultTagHelperCreateIntermediateNode.cs │ │ ├── DefaultTagHelperExecuteIntermediateNode.cs │ │ ├── DefaultTagHelperHtmlAttributeIntermediateNode.cs │ │ ├── DefaultTagHelperOptimizationPass.cs │ │ ├── DefaultTagHelperPropertyIntermediateNode.cs │ │ ├── DefaultTagHelperRuntimeIntermediateNode.cs │ │ ├── DefaultTagHelperTargetExtension.cs │ │ ├── DesignTimeDirectiveIntermediateNode.cs │ │ ├── DesignTimeDirectivePass.cs │ │ ├── DesignTimeDirectiveTargetExtension.cs │ │ ├── EliminateMethodBodyPass.cs │ │ ├── FunctionsDirective.cs │ │ ├── FunctionsDirectivePass.cs │ │ ├── IDefaultTagHelperTargetExtension.cs │ │ ├── IDesignTimeDirectiveTargetExtension.cs │ │ ├── IMetadataAttributeTargetExtension.cs │ │ ├── IMetadataIdentifierFeature.cs │ │ ├── IPreallocatedAttributeTargetExtension.cs │ │ ├── ISectionTargetExtension.cs │ │ ├── ITemplateTargetExtension.cs │ │ ├── InheritsDirective.cs │ │ ├── InheritsDirectivePass.cs │ │ ├── MetadataAttributePass.cs │ │ ├── MetadataAttributeTargetExtension.cs │ │ ├── PreallocatedAttributeTargetExtension.cs │ │ ├── PreallocatedTagHelperAttributeOptimizationPass.cs │ │ ├── PreallocatedTagHelperHtmlAttributeIntermediateNode.cs │ │ ├── PreallocatedTagHelperHtmlAttributeValueIntermediateNode.cs │ │ ├── PreallocatedTagHelperPropertyIntermediateNode.cs │ │ ├── PreallocatedTagHelperPropertyValueIntermediateNode.cs │ │ ├── RazorCompiledItemAttributeIntermediateNode.cs │ │ ├── RazorCompiledItemMetadataAttributeIntermediateNode.cs │ │ ├── RazorSourceChecksumAttributeIntermediateNode.cs │ │ ├── SectionDirective.cs │ │ ├── SectionDirectivePass.cs │ │ ├── SectionIntermediateNode.cs │ │ ├── SectionTargetExtension.cs │ │ ├── TemplateIntermediateNode.cs │ │ └── TemplateTargetExtension.cs │ ├── HtmlConventions.cs │ ├── HtmlNodeOptimizationPass.cs │ ├── IConfigureRazorCodeGenerationOptionsFeature.cs │ ├── IConfigureRazorParserOptionsFeature.cs │ ├── IDirectiveDescriptorBuilder.cs │ ├── IImportProjectFeature.cs │ ├── IRazorCSharpLoweringPhase.cs │ ├── IRazorCodeGenerationOptionsFactoryProjectFeature.cs │ ├── IRazorCodeGenerationOptionsFeature.cs │ ├── IRazorDirectiveClassifierPass.cs │ ├── IRazorDirectiveClassifierPhase.cs │ ├── IRazorDirectiveFeature.cs │ ├── IRazorDocumentClassifierPass.cs │ ├── IRazorDocumentClassifierPhase.cs │ ├── IRazorEngineBuilder.cs │ ├── IRazorEngineFeature.cs │ ├── IRazorEnginePhase.cs │ ├── IRazorFeature.cs │ ├── IRazorIntermediateNodeLoweringPhase.cs │ ├── IRazorOptimizationPass.cs │ ├── IRazorOptimizationPhase.cs │ ├── IRazorParserOptionsFactoryProjectFeature.cs │ ├── IRazorParserOptionsFeature.cs │ ├── IRazorParsingPhase.cs │ ├── IRazorProjectEngineFeature.cs │ ├── IRazorSyntaxTreePass.cs │ ├── IRazorSyntaxTreePhase.cs │ ├── IRazorTagHelperBinderPhase.cs │ ├── IRazorTargetExtensionFeature.cs │ ├── ITagHelperDescriptorProvider.cs │ ├── ITagHelperFeature.cs │ ├── Intermediate │ │ ├── CSharpCodeAttributeValueIntermediateNode.cs │ │ ├── CSharpCodeIntermediateNode.cs │ │ ├── CSharpExpressionAttributeValueIntermediateNode.cs │ │ ├── CSharpExpressionIntermediateNode.cs │ │ ├── ClassDeclarationIntermediateNode.cs │ │ ├── CommonAnnotations.cs │ │ ├── DebuggerDisplayFormatter.cs │ │ ├── DefaultRazorIntermediateNodeBuilder.cs │ │ ├── DirectiveIntermediateNode.cs │ │ ├── DirectiveTokenIntermediateNode.cs │ │ ├── DocumentIntermediateNode.cs │ │ ├── DocumentIntermediateNodeExtensions.cs │ │ ├── ExtensionIntermediateNode.cs │ │ ├── FieldDeclarationIntermediateNode.cs │ │ ├── HtmlAttributeIntermediateNode.cs │ │ ├── HtmlAttributeValueIntermediateNode.cs │ │ ├── HtmlContentIntermediateNode.cs │ │ ├── IExtensionIntermediateNodeVisitor.cs │ │ ├── InputDocumentKind.cs │ │ ├── IntermediateNode.cs │ │ ├── IntermediateNodeBuilder.cs │ │ ├── IntermediateNodeCollection.cs │ │ ├── IntermediateNodeExtensions.cs │ │ ├── IntermediateNodeFormatter.cs │ │ ├── IntermediateNodeFormatterBase.cs │ │ ├── IntermediateNodeReference.cs │ │ ├── IntermediateNodeVisitor.cs │ │ ├── IntermediateNodeWalker.cs │ │ ├── IntermediateToken.cs │ │ ├── MalformedDirectiveIntermediateNode.cs │ │ ├── MemberDeclarationIntermediateNode.cs │ │ ├── MethodDeclarationIntermediateNode.cs │ │ ├── MethodParameter.cs │ │ ├── NamespaceDeclarationIntermediateNode.cs │ │ ├── PropertyDeclarationIntermediateNode.cs │ │ ├── TagHelperBodyIntermediateNode.cs │ │ ├── TagHelperHtmlAttributeIntermediateNode.cs │ │ ├── TagHelperIntermediateNode.cs │ │ ├── TagHelperPropertyIntermediateNode.cs │ │ ├── TokenKind.cs │ │ ├── TypeParameter.cs │ │ └── UsingDirectiveIntermediateNode.cs │ ├── IntermediateNodePassBase.cs │ ├── ItemCollection.cs │ ├── LargeTextSourceDocument.cs │ ├── Legacy │ │ ├── AcceptedCharactersInternal.cs │ │ ├── AddImportChunkGenerator.cs │ │ ├── AddTagHelperChunkGenerator.cs │ │ ├── AutoCompleteEditHandler.cs │ │ ├── BalancingModes.cs │ │ ├── BlockKindInternal.cs │ │ ├── CSharpCodeParser.cs │ │ ├── CSharpKeyword.cs │ │ ├── CSharpLanguageCharacteristics.cs │ │ ├── CSharpTokenizer.cs │ │ ├── ClassifiedSpanInternal.cs │ │ ├── CodeBlockEditHandler.cs │ │ ├── DirectiveCSharpTokenizer.cs │ │ ├── DirectiveHtmlTokenizer.cs │ │ ├── DirectiveTokenChunkGenerator.cs │ │ ├── DisposableAction.cs │ │ ├── EditResult.cs │ │ ├── ErrorSink.cs │ │ ├── ExpressionChunkGenerator.cs │ │ ├── FirstDirectiveCSharpLanguageCharacteristics.cs │ │ ├── FirstDirectiveHtmlLanguageCharacteristics.cs │ │ ├── HtmlLanguageCharacteristics.cs │ │ ├── HtmlMarkupParser.cs │ │ ├── HtmlTokenizer.cs │ │ ├── ISpanChunkGenerator.cs │ │ ├── ITextBuffer.cs │ │ ├── ITextDocument.cs │ │ ├── ITokenizer.cs │ │ ├── ImplicitExpressionEditHandler.cs │ │ ├── KnownTokenType.cs │ │ ├── LanguageCharacteristics.cs │ │ ├── LegacySyntaxNodeExtensions.cs │ │ ├── LineTrackingStringBuffer.cs │ │ ├── LiteralAttributeChunkGenerator.cs │ │ ├── LocationTagged.cs │ │ ├── MarkupChunkGenerator.cs │ │ ├── ParserBase.cs │ │ ├── ParserContext.cs │ │ ├── ParserHelpers.cs │ │ ├── PartialParseResultInternal.cs │ │ ├── RazorParser.cs │ │ ├── RazorSyntaxTreeExtensions.cs │ │ ├── RemoveTagHelperChunkGenerator.cs │ │ ├── SeekableTextReader.cs │ │ ├── SourceLocationTracker.cs │ │ ├── SpanChunkGenerator.cs │ │ ├── SpanContext.cs │ │ ├── SpanEditHandler.cs │ │ ├── SpanKindInternal.cs │ │ ├── StatementChunkGenerator.cs │ │ ├── SyntaxConstants.cs │ │ ├── TagHelperAttributeNode.cs │ │ ├── TagHelperBlockRewriter.cs │ │ ├── TagHelperDirectiveType.cs │ │ ├── TagHelperParseTreeRewriter.cs │ │ ├── TagHelperPrefixDirectiveChunkGenerator.cs │ │ ├── TagHelperSpanInternal.cs │ │ ├── TextReaderExtensions.cs │ │ ├── Tokenizer.cs │ │ ├── TokenizerBackedParser.cs │ │ ├── TokenizerView.cs │ │ └── WhiteSpaceRewriter.cs │ ├── Microsoft.AspNetCore.Razor.Language.csproj │ ├── NotFoundProjectItem.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Resources.Designer.cs │ ├── ProvideRazorExtensionInitializerAttribute.cs │ ├── RazorCSharpDocument.cs │ ├── RazorCodeDocument.cs │ ├── RazorCodeDocumentExtensions.cs │ ├── RazorCodeGenerationOptions.cs │ ├── RazorCodeGenerationOptionsBuilder.cs │ ├── RazorConfiguration.cs │ ├── RazorDiagnostic.cs │ ├── RazorDiagnosticCollection.cs │ ├── RazorDiagnosticDescriptor.cs │ ├── RazorDiagnosticFactory.cs │ ├── RazorDiagnosticSeverity.cs │ ├── RazorEngine.cs │ ├── RazorEngineBuilderExtensions.cs │ ├── RazorEngineFeatureBase.cs │ ├── RazorEnginePhaseBase.cs │ ├── RazorExtension.cs │ ├── RazorExtensionInitializer.cs │ ├── RazorLanguageVersion.cs │ ├── RazorParserFeatureFlags.cs │ ├── RazorParserOptions.cs │ ├── RazorParserOptionsBuilder.cs │ ├── RazorProject.cs │ ├── RazorProjectEngine.cs │ ├── RazorProjectEngineBuilder.cs │ ├── RazorProjectEngineBuilderExtensions.cs │ ├── RazorProjectEngineFeatureBase.cs │ ├── RazorProjectFileSystem.cs │ ├── RazorProjectItem.cs │ ├── RazorSourceDocument.cs │ ├── RazorSourceDocumentProperties.cs │ ├── RazorSourceLineCollection.cs │ ├── RazorSyntaxTree.cs │ ├── RazorTemplateEngine.cs │ ├── RazorTemplateEngineOptions.cs │ ├── RequiredAttributeDescriptor.cs │ ├── RequiredAttributeDescriptorBuilder.cs │ ├── RequiredAttributeDescriptorComparer.cs │ ├── Resources.resx │ ├── SourceChange.cs │ ├── SourceLocation.cs │ ├── SourceMapping.cs │ ├── SourceSpan.cs │ ├── StreamSourceDocument.cs │ ├── StringSourceDocument.cs │ ├── SuppressChecksumOptionsFeature.cs │ ├── Syntax │ │ ├── ArrayElement.cs │ │ ├── ChildSyntaxList.cs │ │ ├── Generated │ │ │ ├── Syntax.xml.Internal.Generated.cs │ │ │ ├── Syntax.xml.Main.Generated.cs │ │ │ └── Syntax.xml.Syntax.Generated.cs │ │ ├── GreenNode.cs │ │ ├── GreenNodeExtensions.cs │ │ ├── InternalSyntax │ │ │ ├── RazorDirectiveSyntax.cs │ │ │ ├── RazorSyntaxNode.cs │ │ │ ├── SyntaxFactory.cs │ │ │ ├── SyntaxList.cs │ │ │ ├── SyntaxListBuilder.cs │ │ │ ├── SyntaxListBuilderOfT.cs │ │ │ ├── SyntaxListOfT.cs │ │ │ ├── SyntaxListPool.cs │ │ │ ├── SyntaxRewriter.cs │ │ │ ├── SyntaxToken.cs │ │ │ ├── SyntaxTrivia.cs │ │ │ └── SyntaxVisitor.cs │ │ ├── MarkupElementRewriter.cs │ │ ├── MarkupMinimizedTagHelperAttributeSyntax.cs │ │ ├── MarkupTagHelperAttributeSyntax.cs │ │ ├── MarkupTagHelperElementSyntax.cs │ │ ├── NodeFlags.cs │ │ ├── ObjectPool.cs │ │ ├── RazorDirectiveSyntax.cs │ │ ├── RazorSyntaxNode.cs │ │ ├── SpecializedCollections.cs │ │ ├── Syntax.xml │ │ ├── SyntaxAnnotation.cs │ │ ├── SyntaxExtensions.cs │ │ ├── SyntaxFactory.cs │ │ ├── SyntaxKind.cs │ │ ├── SyntaxList.cs │ │ ├── SyntaxListBuilder.cs │ │ ├── SyntaxListBuilderExtensions.cs │ │ ├── SyntaxListBuilderOfT.cs │ │ ├── SyntaxListOfT.cs │ │ ├── SyntaxNode.Iterators.cs │ │ ├── SyntaxNode.cs │ │ ├── SyntaxNodeExtensions.cs │ │ ├── SyntaxReplacer.cs │ │ ├── SyntaxRewriter.cs │ │ ├── SyntaxSerializer.cs │ │ ├── SyntaxToken.cs │ │ ├── SyntaxTrivia.cs │ │ ├── SyntaxTriviaList.cs │ │ ├── SyntaxTriviaListBuilder.cs │ │ ├── SyntaxVisitor.cs │ │ ├── SyntaxWalker.cs │ │ └── TextSpan.cs │ ├── TagHelperAttributeInfo.cs │ ├── TagHelperBinder.cs │ ├── TagHelperBinding.cs │ ├── TagHelperConventions.cs │ ├── TagHelperDescriptor.cs │ ├── TagHelperDescriptorBuilder.cs │ ├── TagHelperDescriptorBuilderExtensions.cs │ ├── TagHelperDescriptorComparer.cs │ ├── TagHelperDescriptorExtensions.cs │ ├── TagHelperDescriptorProviderContext.cs │ ├── TagHelperDocumentContext.cs │ ├── TagHelperInfo.cs │ ├── TagHelperMatchingConventions.cs │ ├── TagHelperMetadata.cs │ ├── TagHelperSpanVisitor.cs │ ├── TagMatchingRuleDescriptor.cs │ ├── TagMatchingRuleDescriptorBuilder.cs │ ├── TagMatchingRuleDescriptorComparer.cs │ ├── TagMode.cs │ ├── TagStructure.cs │ ├── VirtualRazorProjectFileSystem.cs │ ├── baseline.netcore.json │ ├── baseline.netframework.json │ ├── breakingchanges.netcore.json │ └── breakingchanges.netframework.json ├── Microsoft.AspNetCore.Razor.Runtime │ ├── Hosting │ │ ├── DefaultRazorCompiledItem.cs │ │ ├── IRazorSourceChecksumMetadata.cs │ │ ├── RazorCompiledItem.cs │ │ ├── RazorCompiledItemAttribute.cs │ │ ├── RazorCompiledItemExtensions.cs │ │ ├── RazorCompiledItemLoader.cs │ │ ├── RazorCompiledItemMetadataAttribute.cs │ │ ├── RazorConfigurationNameAttribute.cs │ │ ├── RazorExtensionAssemblyNameAttribute.cs │ │ ├── RazorLanguageVersionAttribute.cs │ │ └── RazorSourceChecksumAttribute.cs │ ├── Microsoft.AspNetCore.Razor.Runtime.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Resources.Designer.cs │ ├── Resources.resx │ ├── Runtime │ │ └── TagHelpers │ │ │ ├── TagHelperExecutionContext.cs │ │ │ ├── TagHelperRunner.cs │ │ │ └── TagHelperScopeManager.cs │ └── baseline.netcore.json ├── Microsoft.AspNetCore.Razor.Tools │ ├── Application.cs │ ├── CachingMetadataReference.cs │ ├── Client.cs │ ├── CommandBase.cs │ ├── CompilerHost.cs │ ├── CompositeRazorProjectFileSystem.cs │ ├── ConcurrentLruCache.cs │ ├── Connection.cs │ ├── ConnectionHost.cs │ ├── ConnectionResult.cs │ ├── DebugMode.cs │ ├── DefaultExtensionAssemblyLoader.cs │ ├── DefaultExtensionDependencyChecker.cs │ ├── DefaultRequestDispatcher.cs │ ├── DiscoverCommand.cs │ ├── EventBus.cs │ ├── ExtensionAssemblyLoader.cs │ ├── ExtensionDependencyChecker.cs │ ├── GenerateCommand.cs │ ├── Memory.cs │ ├── MetadataCache.cs │ ├── MetadataReaderExtensions.cs │ ├── Microsoft.AspNetCore.Razor.Tools.csproj │ ├── MutexName.cs │ ├── PipeName.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RequestDispatcher.cs │ ├── ServerCommand.cs │ ├── ServerProtocol │ │ ├── CompletedServerResponse.cs │ │ ├── MismatchedVersionServerResponse.cs │ │ ├── NativeMethods.cs │ │ ├── RejectedServerResponse.cs │ │ ├── RequestArgument.cs │ │ ├── ServerConnection.cs │ │ ├── ServerLogger.cs │ │ ├── ServerPaths.cs │ │ ├── ServerProtocol.cs │ │ ├── ServerRequest.cs │ │ ├── ServerResponse.cs │ │ └── ShutdownServerResponse.cs │ ├── ShadowCopyManager.cs │ └── ShutdownCommand.cs ├── Microsoft.AspNetCore.Razor │ ├── Microsoft.AspNetCore.Razor.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TagHelpers │ │ ├── DefaultTagHelperContent.cs │ │ ├── HtmlAttributeNameAttribute.cs │ │ ├── HtmlAttributeNotBoundAttribute.cs │ │ ├── HtmlAttributeValueStyle.cs │ │ ├── HtmlTargetElementAttribute.cs │ │ ├── ITagHelper.cs │ │ ├── ITagHelperComponent.cs │ │ ├── NullHtmlEncoder.cs │ │ ├── OutputElementHintAttribute.cs │ │ ├── ReadOnlyTagHelperAttributeList.cs │ │ ├── RestrictChildrenAttribute.cs │ │ ├── TagHelper.cs │ │ ├── TagHelperAttribute.cs │ │ ├── TagHelperAttributeList.cs │ │ ├── TagHelperComponent.cs │ │ ├── TagHelperContent.cs │ │ ├── TagHelperContext.cs │ │ ├── TagHelperOutput.cs │ │ ├── TagMode.cs │ │ └── TagStructure.cs │ └── baseline.netcore.json ├── Microsoft.CodeAnalysis.Razor.Workspaces │ ├── DefaultDocumentServiceProviderFactory.cs │ ├── DefaultErrorReporter.cs │ ├── DefaultErrorReporterFactory.cs │ ├── DefaultProjectSnapshotProjectEngineFactory.cs │ ├── DefaultProjectSnapshotProjectEngineFactoryFactory.cs │ ├── DefaultRazorCompletionFactsService.cs │ ├── DocumentKey.cs │ ├── DocumentServiceProviderFactory.cs │ ├── Editor │ │ ├── EditorSettings.cs │ │ ├── EditorSettingsChangedEventArgs.cs │ │ └── WorkspaceEditorSettings.cs │ ├── ErrorReporter.cs │ ├── ExportCustomProjectEngineFactoryAttribute.cs │ ├── FallbackProjectEngineFactory.cs │ ├── ForegroundDispatcher.cs │ ├── Host │ │ ├── IDocumentExcerptService.cs │ │ ├── IDocumentOperationService.cs │ │ ├── IDocumentService.cs │ │ ├── IDocumentServiceProvider.cs │ │ └── ISpanMappingService.cs │ ├── ICustomProjectEngineFactoryMetadata.cs │ ├── IFallbackProjectEngineFactory.cs │ ├── IProjectEngineFactory.cs │ ├── Microsoft.CodeAnalysis.Razor.Workspaces.csproj │ ├── ProjectSnapshotProjectEngineFactory.cs │ ├── ProjectSystem │ │ ├── DefaultDocumentSnapshot.cs │ │ ├── DefaultImportDocumentSnapshot.cs │ │ ├── DefaultProjectSnapshot.cs │ │ ├── DefaultProjectSnapshotManager.cs │ │ ├── DefaultProjectSnapshotManagerFactory.cs │ │ ├── DocumentSnapshot.cs │ │ ├── DocumentState.cs │ │ ├── EmptyTextLoader.cs │ │ ├── EphemeralProjectSnapshot.cs │ │ ├── FallbackRazorConfiguration.cs │ │ ├── FallbackRazorExtension.cs │ │ ├── GeneratedCodeContainer.cs │ │ ├── GeneratedOutputTextLoader.cs │ │ ├── HostDocument.cs │ │ ├── HostProject.cs │ │ ├── LiveShareProjectSnapshotBase.cs │ │ ├── ProjectChangeEventArgs.cs │ │ ├── ProjectChangeKind.cs │ │ ├── ProjectDifference.cs │ │ ├── ProjectSnapshot.cs │ │ ├── ProjectSnapshotChangeTrigger.cs │ │ ├── ProjectSnapshotManager.cs │ │ ├── ProjectSnapshotManagerBase.cs │ │ ├── ProjectState.cs │ │ ├── ProjectSystemRazorConfiguration.cs │ │ ├── ProjectSystemRazorExtension.cs │ │ └── WorkspaceProjectSnapshotChangeTrigger.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Resources.Designer.cs │ ├── RazorCompletionFactsService.cs │ ├── RazorCompletionItem.cs │ ├── RazorCompletionItemKind.cs │ ├── RazorDocumentExcerptService.cs │ ├── RazorDocumentServiceProvider.cs │ ├── RazorSpanMappingService.cs │ ├── Resources.resx │ ├── SourceTextExtensions.cs │ ├── TagHelperResolutionResult.cs │ └── TagHelperResolver.cs ├── Microsoft.CodeAnalysis.Razor │ ├── AssemblyIdentityEqualityComparer.cs │ ├── CompilationTagHelperFeature.cs │ ├── ComponentTagHelperDescriptorProvider.cs │ ├── DefaultMetadataReferenceFeature.cs │ ├── DefaultTagHelperDescriptorFactory.cs │ ├── DefaultTagHelperDescriptorProvider.cs │ ├── FilePathComparer.cs │ ├── IMetadataReferenceFeature.cs │ ├── Microsoft.CodeAnalysis.Razor.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Resources.Designer.cs │ ├── RazorDiagnosticFactory.cs │ ├── RazorLanguage.cs │ ├── RequiredAttributeParser.cs │ ├── Resources.resx │ ├── SourceSpanExtensions.cs │ ├── TagHelperDescriptorProviderContextExtensions.cs │ ├── TagHelperTypeVisitor.cs │ ├── TagHelperTypes.cs │ ├── TextChangeExtensions.cs │ ├── TextSpanExtensions.cs │ ├── baseline.netcore.json │ └── baseline.netframework.json ├── Microsoft.CodeAnalysis.Remote.Razor │ ├── Microsoft.CodeAnalysis.Remote.Razor.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RazorLanguageService.cs │ ├── RazorServiceBase.cs │ ├── RazorServices.cs │ └── RemoteTagHelperResolver.cs ├── Microsoft.NET.Sdk.Razor │ ├── DotnetToolTask.cs │ ├── Microsoft.NET.Sdk.Razor.csproj │ ├── Microsoft.NET.Sdk.Razor.nuspec │ ├── RazorGenerate.cs │ ├── RazorTagHelper.cs │ ├── Sdk │ │ ├── Sdk.props │ │ └── Sdk.targets │ ├── baseline.netcore.json │ ├── baseline.netframework.json │ ├── build │ │ └── netstandard2.0 │ │ │ ├── Microsoft.NET.Sdk.Razor.CodeGeneration.targets │ │ │ ├── Microsoft.NET.Sdk.Razor.Compilation.targets │ │ │ ├── Microsoft.NET.Sdk.Razor.Component.targets │ │ │ ├── Microsoft.NET.Sdk.Razor.Configuration.targets │ │ │ ├── Microsoft.NET.Sdk.Razor.DesignTime.targets │ │ │ ├── Microsoft.NET.Sdk.Razor.GenerateAssemblyInfo.targets │ │ │ ├── Microsoft.NET.Sdk.Razor.props │ │ │ ├── Rules │ │ │ ├── RazorConfiguration.xaml │ │ │ ├── RazorExtension.xaml │ │ │ ├── RazorGeneral.xaml │ │ │ └── RazorGenerateWithTargetPath.xaml │ │ │ ├── Sdk.Razor.CurrentVersion.props │ │ │ └── Sdk.Razor.CurrentVersion.targets │ └── buildMultiTargeting │ │ ├── Microsoft.NET.Sdk.Razor.props │ │ └── Sdk.Razor.CurrentVersion.MultiTargeting.targets ├── Microsoft.VisualStudio.Editor.Razor │ ├── AcceptedCharacters.cs │ ├── AttributeCompletionContext.cs │ ├── AttributeCompletionResult.cs │ ├── BackgroundParser.cs │ ├── BackgroundParserResultsReadyEventArgs.cs │ ├── BlockKind.cs │ ├── BraceSmartIndenter.cs │ ├── BraceSmartIndenterFactory.cs │ ├── BufferGraphExtensions.cs │ ├── ClassifiedSpan.cs │ ├── ContextChangeEventArgs.cs │ ├── ContextChangeKind.cs │ ├── DefaultBraceSmartIndenterFactory.cs │ ├── DefaultBraceSmartIndenterFactoryFactory.cs │ ├── DefaultCodeDocumentProvider.cs │ ├── DefaultEditorSettingsManager.cs │ ├── DefaultImportDocumentManager.cs │ ├── DefaultImportDocumentManagerFactory.cs │ ├── DefaultProjectPathProvider.cs │ ├── DefaultProjectPathProviderFactory.cs │ ├── DefaultRazorDocumentManager.cs │ ├── DefaultRazorEditorFactoryService.cs │ ├── DefaultRazorIndentationFactsService.cs │ ├── DefaultRazorSyntaxFactsService.cs │ ├── DefaultTagHelperCompletionService.cs │ ├── DefaultTagHelperFactsService.cs │ ├── DefaultTagHelperResolver.cs │ ├── DefaultTagHelperResolverFactory.cs │ ├── DefaultTextBufferCodeDocumentProvider.cs │ ├── DefaultTextBufferProvider.cs │ ├── DefaultVisualStudioDocumentTracker.cs │ ├── DefaultVisualStudioDocumentTrackerFactory.cs │ ├── DefaultVisualStudioDocumentTrackerFactoryFactory.cs │ ├── DefaultVisualStudioRazorParser.cs │ ├── DefaultVisualStudioRazorParserFactory.cs │ ├── DefaultVisualStudioRazorParserFactoryFactory.cs │ ├── DefaultWorkspaceEditorSettings.cs │ ├── DefaultWorkspaceEditorSettingsFactory.cs │ ├── DocumentStructureChangedEventArgs.cs │ ├── Documents │ │ ├── DefaultFileChangeTracker.cs │ │ ├── DefaultFileChangeTrackerFactory.cs │ │ ├── EditorDocument.cs │ │ ├── EditorDocumentManager.cs │ │ ├── EditorDocumentManagerBase.cs │ │ ├── EditorDocumentManagerListener.cs │ │ ├── FileChangeEventArgs.cs │ │ ├── FileChangeKind.cs │ │ ├── FileChangeTracker.cs │ │ ├── FileChangeTrackerFactory.cs │ │ └── SnapshotChangeTracker.cs │ ├── EditorSettingsManager.cs │ ├── ElementCompletionContext.cs │ ├── ElementCompletionResult.cs │ ├── ImportChangedEventArgs.cs │ ├── ImportDocumentManager.cs │ ├── LegacyProjectEngineFactory_1_0.cs │ ├── LegacyProjectEngineFactory_1_1.cs │ ├── LegacyProjectEngineFactory_2_0.cs │ ├── LegacyProjectEngineFactory_2_1.cs │ ├── LegacyProjectEngineFactory_3_0.cs │ ├── LiveShareWorkspaceProvider.cs │ ├── Microsoft.VisualStudio.Editor.Razor.csproj │ ├── ProjectPathProvider.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Resources.Designer.cs │ ├── RazorCodeDocumentProvider.cs │ ├── RazorDirectiveCompletionProvider.cs │ ├── RazorDirectiveCompletionSource.cs │ ├── RazorDirectiveCompletionSourceProvider.cs │ ├── RazorDocumentManager.cs │ ├── RazorEditorFactoryService.cs │ ├── RazorIndentationFactsService.cs │ ├── RazorSyntaxFactsService.cs │ ├── RazorSyntaxFactsServiceExtensions.cs │ ├── RazorSyntaxTreePartialParser.cs │ ├── RazorTextBufferProvider.cs │ ├── RazorTextViewConnectionListener.cs │ ├── Resources.resx │ ├── SpanKind.cs │ ├── TagHelperCompletionService.cs │ ├── TagHelperFactsService.cs │ ├── TagHelperSpan.cs │ ├── TextBufferCodeDocumentProvider.cs │ ├── TextBufferExtensions.cs │ ├── TextBufferProjectService.cs │ ├── TextContentChangedEventArgsExtensions.cs │ ├── TextSnapshotProjectItem.cs │ ├── VisualStudioCompletionBroker.cs │ ├── VisualStudioDocumentTracker.cs │ ├── VisualStudioDocumentTrackerFactory.cs │ ├── VisualStudioRazorParser.cs │ ├── VisualStudioRazorParserFactory.cs │ └── VisualStudioWorkspaceAccessor.cs ├── Microsoft.VisualStudio.LanguageServices.Razor │ ├── BackgroundDocumentGenerator.cs │ ├── DefaultVisualStudioWorkspaceAccessor.cs │ ├── Documents │ │ ├── RunningDocumentTableEventSink.cs │ │ ├── VisaulStudioFileChangeTracker.cs │ │ ├── VisualStudioEditorDocumentManager.cs │ │ ├── VisualStudioEditorDocumentManagerFactory.cs │ │ ├── VisualStudioFileChangeTrackerFactory.cs │ │ ├── VisualStudioFileChangeTrackerFactoryFactory.cs │ │ └── VsTextBufferDataEventsSink.cs │ ├── Editor │ │ ├── DefaultTextBufferProjectService.cs │ │ ├── DefaultVisualStudioCompletionBroker.cs │ │ └── DefaultVisualStudioCompletionBrokerFactory.cs │ ├── Microsoft.VisualStudio.LanguageServices.Razor.csproj │ ├── Microsoft.VisualStudio.LanguageServices.Razor.ruleset │ ├── OOPTagHelperResolver.cs │ ├── OOPTagHelperResolverFactory.cs │ ├── ProjectSystem │ │ ├── DefaultRazorProjectHost.cs │ │ ├── DefaultWorkspaceProjectContextFactory.cs │ │ ├── FallbackRazorProjectHost.cs │ │ ├── GeneratedDocumentTextLoader.cs │ │ ├── IUnconfiguredProjectCommonServices.cs │ │ ├── IWorkspaceProjectContext.cs │ │ ├── IWorkspaceProjectContextFactory.cs │ │ ├── ManagedProjectSystemSchema.cs │ │ ├── ProjectExternalErrorReporter.cs │ │ ├── RazorProjectHostBase.cs │ │ ├── Rules │ │ │ ├── RazorConfiguration.cs │ │ │ ├── RazorExtension.cs │ │ │ ├── RazorGeneral.cs │ │ │ ├── RazorGenerateWithTargetPath.cs │ │ │ └── RazorProjectProperties.cs │ │ └── UnconfiguredProjectCommonServices.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Resources.Designer.cs │ ├── Resources.resx │ ├── Serialization │ │ ├── JsonConverterCollectionExtensions.cs │ │ ├── ProjectSnapshotHandle.cs │ │ ├── ProjectSnapshotHandleJsonConverter.cs │ │ ├── ProjectSnapshotJsonConverter.cs │ │ ├── RazorConfigurationJsonConverter.cs │ │ ├── RazorDiagnosticJsonConverter.cs │ │ ├── RazorExtensionJsonConverter.cs │ │ ├── SerializedRazorExtension.cs │ │ └── TagHelperDescriptorJsonConverter.cs │ ├── VisualStudioErrorReporter.cs │ ├── VisualStudioErrorReporterFactory.cs │ ├── VisualStudioForegroundDispatcher.cs │ └── VsSolutionUpdatesProjectSnapshotChangeTrigger.cs ├── Microsoft.VisualStudio.Mac.LanguageServices.Razor │ ├── DefaultVisualStudioMacWorkspaceAccessor.cs │ ├── Documents │ │ ├── VisualStudioMacFileChangeTracker.cs │ │ ├── VisualStudioMacFileChangeTrackerFactory.cs │ │ └── VisualStudioMacFileChangeTrackerFactoryFactory.cs │ ├── Editor │ │ ├── DefaultTextBufferProjectService.cs │ │ ├── DefaultVisualStudioCompletionBroker.cs │ │ └── DefaultVisualStudioCompletionBrokerFactory.cs │ ├── Microsoft.VisualStudio.Mac.LanguageServices.Razor.csproj │ ├── ProjectBuildChangeTrigger.cs │ ├── ProjectSystem │ │ ├── DefaultDotNetProjectHost.cs │ │ ├── DefaultRazorProjectHost.cs │ │ ├── DotNetProjectHost.cs │ │ ├── DotNetProjectHostFactory.cs │ │ ├── FallbackRazorProjectHost.cs │ │ └── RazorProjectHostBase.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Resources.Designer.cs │ ├── Resources.resx │ ├── VisualStudioErrorReporter.cs │ ├── VisualStudioErrorReporterFactory.cs │ ├── VisualStudioForegroundDispatcher.cs │ └── VisualStudioMacWorkspaceAccessor.cs └── RazorPageGenerator │ ├── Program.cs │ ├── RazorPageGenerator.csproj │ └── RazorPageGeneratorResult.cs ├── test ├── Directory.Build.props ├── Microsoft.AspNetCore.Mvc.Razor.Extensions.Test │ ├── AssemblyAttributeInjectionPassTest.cs │ ├── InjectDirectiveTest.cs │ ├── InjectTargetExtensionTest.cs │ ├── IntegrationTests │ │ └── CodeGenerationIntegrationTest.cs │ ├── Microsoft.AspNetCore.Mvc.Razor.Extensions.Test.csproj │ ├── ModelDirectiveTest.cs │ ├── ModelExpressionPassTest.cs │ ├── MvcImportProjectFeatureTest.cs │ ├── MvcRazorTemplateEngineTest.cs │ ├── MvcShim.cs │ ├── MvcViewDocumentClassifierPassTest.cs │ ├── NamespaceDirectiveTest.cs │ ├── PageDirectiveTest.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RazorPageDocumentClassifierPassTest.cs │ ├── SourceMappingsSerializer.cs │ ├── TagHelperDescriptorExtensionsTest.cs │ ├── TestFiles │ │ └── IntegrationTests │ │ │ └── CodeGenerationIntegrationTest │ │ │ ├── Basic.cshtml │ │ │ ├── Basic_DesignTime.codegen.cs │ │ │ ├── Basic_DesignTime.ir.txt │ │ │ ├── Basic_DesignTime.mappings.txt │ │ │ ├── Basic_Runtime.codegen.cs │ │ │ ├── Basic_Runtime.ir.txt │ │ │ ├── IncompleteDirectives.cshtml │ │ │ ├── IncompleteDirectives_DesignTime.codegen.cs │ │ │ ├── IncompleteDirectives_DesignTime.diagnostics.txt │ │ │ ├── IncompleteDirectives_DesignTime.ir.txt │ │ │ ├── IncompleteDirectives_DesignTime.mappings.txt │ │ │ ├── IncompleteDirectives_Runtime.codegen.cs │ │ │ ├── IncompleteDirectives_Runtime.diagnostics.txt │ │ │ ├── IncompleteDirectives_Runtime.ir.txt │ │ │ ├── InheritsViewModel.cshtml │ │ │ ├── InheritsViewModel_DesignTime.codegen.cs │ │ │ ├── InheritsViewModel_DesignTime.ir.txt │ │ │ ├── InheritsViewModel_DesignTime.mappings.txt │ │ │ ├── InheritsViewModel_Runtime.codegen.cs │ │ │ ├── InheritsViewModel_Runtime.ir.txt │ │ │ ├── InheritsWithViewImports.cshtml │ │ │ ├── InheritsWithViewImports_DesignTime.codegen.cs │ │ │ ├── InheritsWithViewImports_DesignTime.ir.txt │ │ │ ├── InheritsWithViewImports_DesignTime.mappings.txt │ │ │ ├── InheritsWithViewImports_Runtime.codegen.cs │ │ │ ├── InheritsWithViewImports_Runtime.ir.txt │ │ │ ├── Inject.cshtml │ │ │ ├── InjectWithModel.cshtml │ │ │ ├── InjectWithModel_DesignTime.codegen.cs │ │ │ ├── InjectWithModel_DesignTime.ir.txt │ │ │ ├── InjectWithModel_DesignTime.mappings.txt │ │ │ ├── InjectWithModel_Runtime.codegen.cs │ │ │ ├── InjectWithModel_Runtime.ir.txt │ │ │ ├── InjectWithSemicolon.cshtml │ │ │ ├── InjectWithSemicolon_DesignTime.codegen.cs │ │ │ ├── InjectWithSemicolon_DesignTime.ir.txt │ │ │ ├── InjectWithSemicolon_DesignTime.mappings.txt │ │ │ ├── InjectWithSemicolon_Runtime.codegen.cs │ │ │ ├── InjectWithSemicolon_Runtime.ir.txt │ │ │ ├── Inject_DesignTime.codegen.cs │ │ │ ├── Inject_DesignTime.ir.txt │ │ │ ├── Inject_DesignTime.mappings.txt │ │ │ ├── Inject_Runtime.codegen.cs │ │ │ ├── Inject_Runtime.ir.txt │ │ │ ├── InvalidNamespaceAtEOF.cshtml │ │ │ ├── InvalidNamespaceAtEOF_DesignTime.codegen.cs │ │ │ ├── InvalidNamespaceAtEOF_DesignTime.diagnostics.txt │ │ │ ├── InvalidNamespaceAtEOF_DesignTime.ir.txt │ │ │ ├── InvalidNamespaceAtEOF_DesignTime.mappings.txt │ │ │ ├── InvalidNamespaceAtEOF_Runtime.codegen.cs │ │ │ ├── InvalidNamespaceAtEOF_Runtime.diagnostics.txt │ │ │ ├── InvalidNamespaceAtEOF_Runtime.ir.txt │ │ │ ├── MalformedPageDirective.cshtml │ │ │ ├── MalformedPageDirective_DesignTime.codegen.cs │ │ │ ├── MalformedPageDirective_DesignTime.diagnostics.txt │ │ │ ├── MalformedPageDirective_DesignTime.ir.txt │ │ │ ├── MalformedPageDirective_DesignTime.mappings.txt │ │ │ ├── MalformedPageDirective_Runtime.codegen.cs │ │ │ ├── MalformedPageDirective_Runtime.diagnostics.txt │ │ │ ├── MalformedPageDirective_Runtime.ir.txt │ │ │ ├── Model.cshtml │ │ │ ├── ModelExpressionTagHelper.cshtml │ │ │ ├── ModelExpressionTagHelper_DesignTime.codegen.cs │ │ │ ├── ModelExpressionTagHelper_DesignTime.ir.txt │ │ │ ├── ModelExpressionTagHelper_DesignTime.mappings.txt │ │ │ ├── ModelExpressionTagHelper_Runtime.codegen.cs │ │ │ ├── ModelExpressionTagHelper_Runtime.ir.txt │ │ │ ├── Model_DesignTime.codegen.cs │ │ │ ├── Model_DesignTime.ir.txt │ │ │ ├── Model_DesignTime.mappings.txt │ │ │ ├── Model_Runtime.codegen.cs │ │ │ ├── Model_Runtime.ir.txt │ │ │ ├── MultipleModels.cshtml │ │ │ ├── MultipleModels_DesignTime.codegen.cs │ │ │ ├── MultipleModels_DesignTime.diagnostics.txt │ │ │ ├── MultipleModels_DesignTime.ir.txt │ │ │ ├── MultipleModels_DesignTime.mappings.txt │ │ │ ├── PageWithNamespace.cshtml │ │ │ ├── PageWithNamespace_DesignTime.codegen.cs │ │ │ ├── PageWithNamespace_DesignTime.ir.txt │ │ │ ├── PageWithNamespace_DesignTime.mappings.txt │ │ │ ├── PageWithNamespace_Runtime.codegen.cs │ │ │ ├── PageWithNamespace_Runtime.ir.txt │ │ │ ├── RazorPageWithNoLeadingPageDirective.cshtml │ │ │ ├── RazorPageWithNoLeadingPageDirective_DesignTime.codegen.cs │ │ │ ├── RazorPageWithNoLeadingPageDirective_DesignTime.diagnostics.txt │ │ │ ├── RazorPageWithNoLeadingPageDirective_DesignTime.ir.txt │ │ │ ├── RazorPageWithNoLeadingPageDirective_DesignTime.mappings.txt │ │ │ ├── RazorPageWithNoLeadingPageDirective_Runtime.codegen.cs │ │ │ ├── RazorPageWithNoLeadingPageDirective_Runtime.diagnostics.txt │ │ │ ├── RazorPageWithNoLeadingPageDirective_Runtime.ir.txt │ │ │ ├── RazorPages.cshtml │ │ │ ├── RazorPagesWithRouteTemplate.cshtml │ │ │ ├── RazorPagesWithRouteTemplate_DesignTime.codegen.cs │ │ │ ├── RazorPagesWithRouteTemplate_DesignTime.ir.txt │ │ │ ├── RazorPagesWithRouteTemplate_DesignTime.mappings.txt │ │ │ ├── RazorPagesWithRouteTemplate_Runtime.codegen.cs │ │ │ ├── RazorPagesWithRouteTemplate_Runtime.ir.txt │ │ │ ├── RazorPagesWithoutModel.cshtml │ │ │ ├── RazorPagesWithoutModel_DesignTime.codegen.cs │ │ │ ├── RazorPagesWithoutModel_DesignTime.ir.txt │ │ │ ├── RazorPagesWithoutModel_DesignTime.mappings.txt │ │ │ ├── RazorPagesWithoutModel_Runtime.codegen.cs │ │ │ ├── RazorPagesWithoutModel_Runtime.ir.txt │ │ │ ├── RazorPages_DesignTime.codegen.cs │ │ │ ├── RazorPages_DesignTime.ir.txt │ │ │ ├── RazorPages_DesignTime.mappings.txt │ │ │ ├── RazorPages_Runtime.codegen.cs │ │ │ ├── RazorPages_Runtime.ir.txt │ │ │ ├── Sections.cshtml │ │ │ ├── Sections_DesignTime.codegen.cs │ │ │ ├── Sections_DesignTime.ir.txt │ │ │ ├── Sections_DesignTime.mappings.txt │ │ │ ├── Sections_Runtime.codegen.cs │ │ │ ├── Sections_Runtime.ir.txt │ │ │ ├── UsingDirectives.cshtml │ │ │ ├── UsingDirectives_DesignTime.codegen.cs │ │ │ ├── UsingDirectives_DesignTime.ir.txt │ │ │ ├── UsingDirectives_DesignTime.mappings.txt │ │ │ ├── UsingDirectives_Runtime.codegen.cs │ │ │ ├── UsingDirectives_Runtime.ir.txt │ │ │ ├── ViewComponentTagHelper.cshtml │ │ │ ├── ViewComponentTagHelper_DesignTime.codegen.cs │ │ │ ├── ViewComponentTagHelper_DesignTime.ir.txt │ │ │ ├── ViewComponentTagHelper_DesignTime.mappings.txt │ │ │ ├── ViewComponentTagHelper_Runtime.codegen.cs │ │ │ ├── ViewComponentTagHelper_Runtime.ir.txt │ │ │ ├── ViewWithNamespace.cshtml │ │ │ ├── ViewWithNamespace_DesignTime.codegen.cs │ │ │ ├── ViewWithNamespace_DesignTime.ir.txt │ │ │ ├── ViewWithNamespace_DesignTime.mappings.txt │ │ │ ├── ViewWithNamespace_Runtime.codegen.cs │ │ │ ├── ViewWithNamespace_Runtime.ir.txt │ │ │ ├── _ViewImports.cshtml │ │ │ ├── _ViewImports_DesignTime.codegen.cs │ │ │ ├── _ViewImports_DesignTime.ir.txt │ │ │ ├── _ViewImports_DesignTime.mappings.txt │ │ │ ├── _ViewImports_Runtime.codegen.cs │ │ │ └── _ViewImports_Runtime.ir.txt │ ├── ViewComponentTagHelperDescriptorFactoryTest.cs │ ├── ViewComponentTagHelperDescriptorProviderTest.cs │ ├── ViewComponentTagHelperPassTest.cs │ ├── ViewComponentTagHelperTargetExtensionTest.cs │ ├── ViewComponentTypeVisitorTest.cs │ └── xunit.runner.json ├── Microsoft.AspNetCore.Mvc.Razor.Extensions.Version1_X.Test │ ├── InjectDirectiveTest.cs │ ├── InjectTargetExtensionTest.cs │ ├── IntegrationTests │ │ └── CodeGenerationIntegrationTest.cs │ ├── LegacySectionTargetExtensionTest.cs │ ├── Microsoft.AspNetCore.Mvc.Razor.Extensions.Version1_X.Test.csproj │ ├── ModelDirectiveTest.cs │ ├── ModelExpressionPassTest.cs │ ├── MvcImportProjectFeatureTest.cs │ ├── MvcRazorTemplateEngineTest.cs │ ├── MvcShim.cs │ ├── MvcViewDocumentClassifierPassTest.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SourceMappingsSerializer.cs │ ├── TagHelperDescriptorExtensionsTest.cs │ ├── TestFiles │ │ └── IntegrationTests │ │ │ └── CodeGenerationIntegrationTest │ │ │ ├── Basic.cshtml │ │ │ ├── Basic_DesignTime.codegen.cs │ │ │ ├── Basic_DesignTime.ir.txt │ │ │ ├── Basic_DesignTime.mappings.txt │ │ │ ├── Basic_Runtime.codegen.cs │ │ │ ├── Basic_Runtime.ir.txt │ │ │ ├── IncompleteDirectives.cshtml │ │ │ ├── IncompleteDirectives_DesignTime.codegen.cs │ │ │ ├── IncompleteDirectives_DesignTime.diagnostics.txt │ │ │ ├── IncompleteDirectives_DesignTime.ir.txt │ │ │ ├── IncompleteDirectives_DesignTime.mappings.txt │ │ │ ├── IncompleteDirectives_Runtime.codegen.cs │ │ │ ├── IncompleteDirectives_Runtime.diagnostics.txt │ │ │ ├── IncompleteDirectives_Runtime.ir.txt │ │ │ ├── InheritsViewModel.cshtml │ │ │ ├── InheritsViewModel_DesignTime.codegen.cs │ │ │ ├── InheritsViewModel_DesignTime.ir.txt │ │ │ ├── InheritsViewModel_DesignTime.mappings.txt │ │ │ ├── InheritsViewModel_Runtime.codegen.cs │ │ │ ├── InheritsViewModel_Runtime.ir.txt │ │ │ ├── InheritsWithViewImports.cshtml │ │ │ ├── InheritsWithViewImports_DesignTime.codegen.cs │ │ │ ├── InheritsWithViewImports_DesignTime.ir.txt │ │ │ ├── InheritsWithViewImports_DesignTime.mappings.txt │ │ │ ├── InheritsWithViewImports_Runtime.codegen.cs │ │ │ ├── InheritsWithViewImports_Runtime.ir.txt │ │ │ ├── Inject.cshtml │ │ │ ├── InjectWithModel.cshtml │ │ │ ├── InjectWithModel_DesignTime.codegen.cs │ │ │ ├── InjectWithModel_DesignTime.ir.txt │ │ │ ├── InjectWithModel_DesignTime.mappings.txt │ │ │ ├── InjectWithModel_Runtime.codegen.cs │ │ │ ├── InjectWithModel_Runtime.ir.txt │ │ │ ├── InjectWithSemicolon.cshtml │ │ │ ├── InjectWithSemicolon_DesignTime.codegen.cs │ │ │ ├── InjectWithSemicolon_DesignTime.ir.txt │ │ │ ├── InjectWithSemicolon_DesignTime.mappings.txt │ │ │ ├── InjectWithSemicolon_Runtime.codegen.cs │ │ │ ├── InjectWithSemicolon_Runtime.ir.txt │ │ │ ├── Inject_DesignTime.codegen.cs │ │ │ ├── Inject_DesignTime.ir.txt │ │ │ ├── Inject_DesignTime.mappings.txt │ │ │ ├── Inject_Runtime.codegen.cs │ │ │ ├── Inject_Runtime.ir.txt │ │ │ ├── InvalidNamespaceAtEOF.cshtml │ │ │ ├── InvalidNamespaceAtEOF_DesignTime.codegen.cs │ │ │ ├── InvalidNamespaceAtEOF_DesignTime.diagnostics.txt │ │ │ ├── InvalidNamespaceAtEOF_DesignTime.ir.txt │ │ │ ├── InvalidNamespaceAtEOF_DesignTime.mappings.txt │ │ │ ├── InvalidNamespaceAtEOF_Runtime.codegen.cs │ │ │ ├── InvalidNamespaceAtEOF_Runtime.diagnostics.txt │ │ │ ├── InvalidNamespaceAtEOF_Runtime.ir.txt │ │ │ ├── Model.cshtml │ │ │ ├── ModelExpressionTagHelper.cshtml │ │ │ ├── ModelExpressionTagHelper_DesignTime.codegen.cs │ │ │ ├── ModelExpressionTagHelper_DesignTime.ir.txt │ │ │ ├── ModelExpressionTagHelper_DesignTime.mappings.txt │ │ │ ├── ModelExpressionTagHelper_Runtime.codegen.cs │ │ │ ├── ModelExpressionTagHelper_Runtime.ir.txt │ │ │ ├── Model_DesignTime.codegen.cs │ │ │ ├── Model_DesignTime.ir.txt │ │ │ ├── Model_DesignTime.mappings.txt │ │ │ ├── Model_Runtime.codegen.cs │ │ │ ├── Model_Runtime.ir.txt │ │ │ ├── MultipleModels.cshtml │ │ │ ├── MultipleModels_DesignTime.codegen.cs │ │ │ ├── MultipleModels_DesignTime.diagnostics.txt │ │ │ ├── MultipleModels_DesignTime.ir.txt │ │ │ ├── MultipleModels_DesignTime.mappings.txt │ │ │ ├── Sections.cshtml │ │ │ ├── Sections_DesignTime.codegen.cs │ │ │ ├── Sections_DesignTime.ir.txt │ │ │ ├── Sections_DesignTime.mappings.txt │ │ │ ├── ViewComponentTagHelper.cshtml │ │ │ ├── ViewComponentTagHelper_DesignTime.codegen.cs │ │ │ ├── ViewComponentTagHelper_DesignTime.ir.txt │ │ │ ├── ViewComponentTagHelper_DesignTime.mappings.txt │ │ │ ├── ViewComponentTagHelper_Runtime.codegen.cs │ │ │ ├── ViewComponentTagHelper_Runtime.ir.txt │ │ │ ├── _ViewImports.cshtml │ │ │ ├── _ViewImports_DesignTime.codegen.cs │ │ │ ├── _ViewImports_DesignTime.ir.txt │ │ │ ├── _ViewImports_DesignTime.mappings.txt │ │ │ ├── _ViewImports_Runtime.codegen.cs │ │ │ └── _ViewImports_Runtime.ir.txt │ ├── ViewComponentTagHelperDescriptorFactoryTest.cs │ ├── ViewComponentTagHelperDescriptorProviderTest.cs │ ├── ViewComponentTagHelperPassTest.cs │ ├── ViewComponentTagHelperTargetExtensionTest.cs │ ├── ViewComponentTypeVisitorTest.cs │ └── xunit.runner.json ├── Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X.Test │ ├── AssemblyAttributeInjectionPassTest.cs │ ├── InjectDirectiveTest.cs │ ├── InjectTargetExtensionTest.cs │ ├── InstrumentationPassTest.cs │ ├── IntegrationTests │ │ ├── CodeGenerationIntegrationTest.cs │ │ └── InstrumentationPassIntegrationTest.cs │ ├── Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X.Test.csproj │ ├── ModelDirectiveTest.cs │ ├── ModelExpressionPassTest.cs │ ├── MvcImportProjectFeatureTest.cs │ ├── MvcShim.cs │ ├── MvcViewDocumentClassifierPassTest.cs │ ├── NamespaceDirectiveTest.cs │ ├── PageDirectiveTest.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RazorPageDocumentClassifierPassTest.cs │ ├── SourceMappingsSerializer.cs │ ├── TagHelperDescriptorExtensionsTest.cs │ ├── TestFiles │ │ └── IntegrationTests │ │ │ ├── CodeGenerationIntegrationTest │ │ │ ├── Basic.cshtml │ │ │ ├── Basic_DesignTime.codegen.cs │ │ │ ├── Basic_DesignTime.ir.txt │ │ │ ├── Basic_DesignTime.mappings.txt │ │ │ ├── Basic_Runtime.codegen.cs │ │ │ ├── Basic_Runtime.ir.txt │ │ │ ├── IncompleteDirectives.cshtml │ │ │ ├── IncompleteDirectives_DesignTime.codegen.cs │ │ │ ├── IncompleteDirectives_DesignTime.diagnostics.txt │ │ │ ├── IncompleteDirectives_DesignTime.ir.txt │ │ │ ├── IncompleteDirectives_DesignTime.mappings.txt │ │ │ ├── IncompleteDirectives_Runtime.codegen.cs │ │ │ ├── IncompleteDirectives_Runtime.diagnostics.txt │ │ │ ├── IncompleteDirectives_Runtime.ir.txt │ │ │ ├── InheritsViewModel.cshtml │ │ │ ├── InheritsViewModel_DesignTime.codegen.cs │ │ │ ├── InheritsViewModel_DesignTime.ir.txt │ │ │ ├── InheritsViewModel_DesignTime.mappings.txt │ │ │ ├── InheritsViewModel_Runtime.codegen.cs │ │ │ ├── InheritsViewModel_Runtime.ir.txt │ │ │ ├── InheritsWithViewImports.cshtml │ │ │ ├── InheritsWithViewImports_DesignTime.codegen.cs │ │ │ ├── InheritsWithViewImports_DesignTime.ir.txt │ │ │ ├── InheritsWithViewImports_DesignTime.mappings.txt │ │ │ ├── InheritsWithViewImports_Runtime.codegen.cs │ │ │ ├── InheritsWithViewImports_Runtime.ir.txt │ │ │ ├── Inject.cshtml │ │ │ ├── InjectWithModel.cshtml │ │ │ ├── InjectWithModel_DesignTime.codegen.cs │ │ │ ├── InjectWithModel_DesignTime.ir.txt │ │ │ ├── InjectWithModel_DesignTime.mappings.txt │ │ │ ├── InjectWithModel_Runtime.codegen.cs │ │ │ ├── InjectWithModel_Runtime.ir.txt │ │ │ ├── InjectWithSemicolon.cshtml │ │ │ ├── InjectWithSemicolon_DesignTime.codegen.cs │ │ │ ├── InjectWithSemicolon_DesignTime.ir.txt │ │ │ ├── InjectWithSemicolon_DesignTime.mappings.txt │ │ │ ├── InjectWithSemicolon_Runtime.codegen.cs │ │ │ ├── InjectWithSemicolon_Runtime.ir.txt │ │ │ ├── Inject_DesignTime.codegen.cs │ │ │ ├── Inject_DesignTime.ir.txt │ │ │ ├── Inject_DesignTime.mappings.txt │ │ │ ├── Inject_Runtime.codegen.cs │ │ │ ├── Inject_Runtime.ir.txt │ │ │ ├── InvalidNamespaceAtEOF.cshtml │ │ │ ├── InvalidNamespaceAtEOF_DesignTime.codegen.cs │ │ │ ├── InvalidNamespaceAtEOF_DesignTime.diagnostics.txt │ │ │ ├── InvalidNamespaceAtEOF_DesignTime.ir.txt │ │ │ ├── InvalidNamespaceAtEOF_DesignTime.mappings.txt │ │ │ ├── InvalidNamespaceAtEOF_Runtime.codegen.cs │ │ │ ├── InvalidNamespaceAtEOF_Runtime.diagnostics.txt │ │ │ ├── InvalidNamespaceAtEOF_Runtime.ir.txt │ │ │ ├── MalformedPageDirective.cshtml │ │ │ ├── MalformedPageDirective_DesignTime.codegen.cs │ │ │ ├── MalformedPageDirective_DesignTime.diagnostics.txt │ │ │ ├── MalformedPageDirective_DesignTime.ir.txt │ │ │ ├── MalformedPageDirective_DesignTime.mappings.txt │ │ │ ├── MalformedPageDirective_Runtime.codegen.cs │ │ │ ├── MalformedPageDirective_Runtime.diagnostics.txt │ │ │ ├── MalformedPageDirective_Runtime.ir.txt │ │ │ ├── Model.cshtml │ │ │ ├── ModelExpressionTagHelper.cshtml │ │ │ ├── ModelExpressionTagHelper_DesignTime.codegen.cs │ │ │ ├── ModelExpressionTagHelper_DesignTime.ir.txt │ │ │ ├── ModelExpressionTagHelper_DesignTime.mappings.txt │ │ │ ├── ModelExpressionTagHelper_Runtime.codegen.cs │ │ │ ├── ModelExpressionTagHelper_Runtime.ir.txt │ │ │ ├── Model_DesignTime.codegen.cs │ │ │ ├── Model_DesignTime.ir.txt │ │ │ ├── Model_DesignTime.mappings.txt │ │ │ ├── Model_Runtime.codegen.cs │ │ │ ├── Model_Runtime.ir.txt │ │ │ ├── MultipleModels.cshtml │ │ │ ├── MultipleModels_DesignTime.codegen.cs │ │ │ ├── MultipleModels_DesignTime.diagnostics.txt │ │ │ ├── MultipleModels_DesignTime.ir.txt │ │ │ ├── MultipleModels_DesignTime.mappings.txt │ │ │ ├── PageWithNamespace.cshtml │ │ │ ├── PageWithNamespace_DesignTime.codegen.cs │ │ │ ├── PageWithNamespace_DesignTime.ir.txt │ │ │ ├── PageWithNamespace_DesignTime.mappings.txt │ │ │ ├── PageWithNamespace_Runtime.codegen.cs │ │ │ ├── PageWithNamespace_Runtime.ir.txt │ │ │ ├── RazorPageWithNoLeadingPageDirective.cshtml │ │ │ ├── RazorPageWithNoLeadingPageDirective_DesignTime.codegen.cs │ │ │ ├── RazorPageWithNoLeadingPageDirective_DesignTime.diagnostics.txt │ │ │ ├── RazorPageWithNoLeadingPageDirective_DesignTime.ir.txt │ │ │ ├── RazorPageWithNoLeadingPageDirective_DesignTime.mappings.txt │ │ │ ├── RazorPageWithNoLeadingPageDirective_Runtime.codegen.cs │ │ │ ├── RazorPageWithNoLeadingPageDirective_Runtime.diagnostics.txt │ │ │ ├── RazorPageWithNoLeadingPageDirective_Runtime.ir.txt │ │ │ ├── RazorPages.cshtml │ │ │ ├── RazorPagesWithRouteTemplate.cshtml │ │ │ ├── RazorPagesWithRouteTemplate_DesignTime.codegen.cs │ │ │ ├── RazorPagesWithRouteTemplate_DesignTime.ir.txt │ │ │ ├── RazorPagesWithRouteTemplate_DesignTime.mappings.txt │ │ │ ├── RazorPagesWithRouteTemplate_Runtime.codegen.cs │ │ │ ├── RazorPagesWithRouteTemplate_Runtime.ir.txt │ │ │ ├── RazorPagesWithoutModel.cshtml │ │ │ ├── RazorPagesWithoutModel_DesignTime.codegen.cs │ │ │ ├── RazorPagesWithoutModel_DesignTime.ir.txt │ │ │ ├── RazorPagesWithoutModel_DesignTime.mappings.txt │ │ │ ├── RazorPagesWithoutModel_Runtime.codegen.cs │ │ │ ├── RazorPagesWithoutModel_Runtime.ir.txt │ │ │ ├── RazorPages_DesignTime.codegen.cs │ │ │ ├── RazorPages_DesignTime.ir.txt │ │ │ ├── RazorPages_DesignTime.mappings.txt │ │ │ ├── RazorPages_Runtime.codegen.cs │ │ │ ├── RazorPages_Runtime.ir.txt │ │ │ ├── Sections.cshtml │ │ │ ├── Sections_DesignTime.codegen.cs │ │ │ ├── Sections_DesignTime.ir.txt │ │ │ ├── Sections_DesignTime.mappings.txt │ │ │ ├── Sections_Runtime.codegen.cs │ │ │ ├── Sections_Runtime.ir.txt │ │ │ ├── UsingDirectives.cshtml │ │ │ ├── UsingDirectives_DesignTime.codegen.cs │ │ │ ├── UsingDirectives_DesignTime.ir.txt │ │ │ ├── UsingDirectives_DesignTime.mappings.txt │ │ │ ├── UsingDirectives_Runtime.codegen.cs │ │ │ ├── UsingDirectives_Runtime.ir.txt │ │ │ ├── ViewComponentTagHelper.cshtml │ │ │ ├── ViewComponentTagHelper_DesignTime.codegen.cs │ │ │ ├── ViewComponentTagHelper_DesignTime.ir.txt │ │ │ ├── ViewComponentTagHelper_DesignTime.mappings.txt │ │ │ ├── ViewComponentTagHelper_Runtime.codegen.cs │ │ │ ├── ViewComponentTagHelper_Runtime.ir.txt │ │ │ ├── ViewWithNamespace.cshtml │ │ │ ├── ViewWithNamespace_DesignTime.codegen.cs │ │ │ ├── ViewWithNamespace_DesignTime.ir.txt │ │ │ ├── ViewWithNamespace_DesignTime.mappings.txt │ │ │ ├── ViewWithNamespace_Runtime.codegen.cs │ │ │ ├── ViewWithNamespace_Runtime.ir.txt │ │ │ ├── _ViewImports.cshtml │ │ │ ├── _ViewImports_DesignTime.codegen.cs │ │ │ ├── _ViewImports_DesignTime.ir.txt │ │ │ ├── _ViewImports_DesignTime.mappings.txt │ │ │ ├── _ViewImports_Runtime.codegen.cs │ │ │ └── _ViewImports_Runtime.ir.txt │ │ │ └── InstrumentationPassIntegrationTest │ │ │ ├── BasicTest.codegen.cs │ │ │ ├── BasicTest.cshtml │ │ │ └── BasicTest.ir.txt │ ├── ViewComponentTagHelperDescriptorFactoryTest.cs │ ├── ViewComponentTagHelperDescriptorProviderTest.cs │ ├── ViewComponentTagHelperPassTest.cs │ ├── ViewComponentTagHelperTargetExtensionTest.cs │ ├── ViewComponentTypeVisitorTest.cs │ └── xunit.runner.json ├── Microsoft.AspNetCore.Razor.Language.Test │ ├── BoundAttributeDescriptorExtensionsTest.cs │ ├── CodeGeneration │ │ ├── CSharpCodeWriterTest.cs │ │ ├── CodeTargetTest.cs │ │ ├── DefaultCodeTargetBuilderTest.cs │ │ ├── DefaultCodeTargetTest.cs │ │ ├── DefaultDocumentWriterTest.cs │ │ ├── DesignTimeNodeWriterTest.cs │ │ ├── LiteralRuntimeNodeWriterTest.cs │ │ ├── RuntimeNodeWriterTest.cs │ │ └── TagHelperHtmlAttributeRuntimeNodeWriterTest.cs │ ├── Components │ │ └── ComponentDocumentClassifierPassTest.cs │ ├── DefaultAllowedChildTagDescriptorBuilderTest.cs │ ├── DefaultBoundAttributeDescriptorBuilderTest.cs │ ├── DefaultDocumentClassifierPassTest.cs │ ├── DefaultItemCollectionTest.cs │ ├── DefaultRazorCSharpLoweringPhaseTest.cs │ ├── DefaultRazorCodeDocumentTest.cs │ ├── DefaultRazorDiagnosticTest.cs │ ├── DefaultRazorDirectiveClassifierPhaseTest.cs │ ├── DefaultRazorDocumentClassifierPhaseTest.cs │ ├── DefaultRazorEngineBuilderTest.cs │ ├── DefaultRazorEngineTest.cs │ ├── DefaultRazorIntermediateNodeLoweringPhaseIntegrationTest.cs │ ├── DefaultRazorIntermediateNodeLoweringPhaseTest.cs │ ├── DefaultRazorOptimizationPhaseTest.cs │ ├── DefaultRazorParsingPhaseTest.cs │ ├── DefaultRazorProjectEngineBuilderTest.cs │ ├── DefaultRazorProjectEngineIntegrationTest.cs │ ├── DefaultRazorProjectEngineTest.cs │ ├── DefaultRazorProjectFileSystemTest.cs │ ├── DefaultRazorProjectItemTest.cs │ ├── DefaultRazorSyntaxTreePhaseTest.cs │ ├── DefaultRazorTagHelperBinderPhaseTest.cs │ ├── DefaultRequiredAttributeDescriptorBuilderTest.cs │ ├── DirectiveDescriptorBuilderExtensionsTest.cs │ ├── DirectiveDescriptorTest.cs │ ├── DirectiveRemovalOptimizationPassTest.cs │ ├── DirectiveTokenEditHandlerTest.cs │ ├── DocumentClassifierPassBaseTest.cs │ ├── Extensions │ │ ├── DefaultMetadataIdentifierFeatureTest.cs │ │ ├── DefaultTagHelperOptimizationPassTest.cs │ │ ├── DefaultTagHelperTargetExtensionTest.cs │ │ ├── DesignTimeDirectiveTargetExtensionTest.cs │ │ ├── FunctionsDirectivePassTest.cs │ │ ├── InheritsDirectivePassTest.cs │ │ ├── MetadataAttributePassTest.cs │ │ ├── MetadataAttributeTargetExtensionTest.cs │ │ ├── PreallocatedAttributeTargetExtensionTest.cs │ │ ├── SectionDirectivePassTest.cs │ │ ├── SectionTargetExtensionTest.cs │ │ └── TemplateTargetExtensionTest.cs │ ├── HtmlConventionsTest.cs │ ├── HtmlNodeOptimizationPassTest.cs │ ├── IntegrationTests │ │ ├── BasicIntegrationTest.cs │ │ ├── CodeGenerationIntegrationTest.cs │ │ ├── ComponentIntegrationTest.cs │ │ ├── ExtensibleDirectiveTest.cs │ │ ├── HtmlAttributeIntegrationTest.cs │ │ ├── RazorTemplateEngineIntegrationTest.cs │ │ ├── SuppressPrimaryMethodBodyntegrationTest.cs │ │ ├── TagHelpersIntegrationTest.cs │ │ └── TestTagHelperDescriptors.cs │ ├── Intermediate │ │ ├── DefaultRazorIntermediateNodeBuilderTest.cs │ │ ├── DocumentIntermediateNodeExtensionsTest.cs │ │ ├── ExtensionIntermediateNodeTest.cs │ │ ├── IntermediateNodeReferenceTest.cs │ │ └── IntermediateNodeWalkerTest.cs │ ├── LargeTextSourceDocumentTest.cs │ ├── Legacy │ │ ├── BaselineWriter.cs │ │ ├── CSharpAutoCompleteTest.cs │ │ ├── CSharpBlockTest.cs │ │ ├── CSharpCodeParserTest.cs │ │ ├── CSharpErrorTest.cs │ │ ├── CSharpExplicitExpressionTest.cs │ │ ├── CSharpImplicitExpressionTest.cs │ │ ├── CSharpLanguageCharacteristicsTest.cs │ │ ├── CSharpNestedStatementsTest.cs │ │ ├── CSharpRazorCommentsTest.cs │ │ ├── CSharpReservedWordsTest.cs │ │ ├── CSharpSectionTest.cs │ │ ├── CSharpSpecialBlockTest.cs │ │ ├── CSharpStatementTest.cs │ │ ├── CSharpTemplateTest.cs │ │ ├── CSharpToMarkupSwitchTest.cs │ │ ├── CSharpTokenizerCommentTest.cs │ │ ├── CSharpTokenizerIdentifierTest.cs │ │ ├── CSharpTokenizerLiteralTest.cs │ │ ├── CSharpTokenizerOperatorsTest.cs │ │ ├── CSharpTokenizerTest.cs │ │ ├── CSharpTokenizerTestBase.cs │ │ ├── CSharpVerbatimBlockTest.cs │ │ ├── CSharpWhitespaceHandlingTest.cs │ │ ├── CodeBlockEditHandlerTest.cs │ │ ├── CodeParserTestBase.cs │ │ ├── CsHtmlCodeParserTestBase.cs │ │ ├── CsHtmlMarkupParserTestBase.cs │ │ ├── DirectiveCSharpTokenizerTest.cs │ │ ├── DirectiveHtmlTokenizerTest.cs │ │ ├── DisposableActionTest.cs │ │ ├── HtmlAttributeTest.cs │ │ ├── HtmlBlockTest.cs │ │ ├── HtmlDocumentTest.cs │ │ ├── HtmlErrorTest.cs │ │ ├── HtmlMarkupParserTests.cs │ │ ├── HtmlTagsTest.cs │ │ ├── HtmlToCodeSwitchTest.cs │ │ ├── HtmlTokenizerTest.cs │ │ ├── HtmlTokenizerTestBase.cs │ │ ├── ImplicitExpressionEditHandlerTest.cs │ │ ├── LineTrackingStringBufferTest.cs │ │ ├── MarkupElementRewriterTest.cs │ │ ├── MarkupParserTestBase.cs │ │ ├── RazorDirectivesTest.cs │ │ ├── RazorParserTest.cs │ │ ├── SourceLocationTrackerTest.cs │ │ ├── TagHelperBlockRewriterTest.cs │ │ ├── TagHelperParseTreeRewriterTest.cs │ │ ├── TagHelperRewritingTestBase.cs │ │ ├── TextReaderExtensionsTest.cs │ │ ├── TokenizerLookaheadTest.cs │ │ ├── TokenizerTestBase.cs │ │ └── WhiteSpaceRewriterTest.cs │ ├── Microsoft.AspNetCore.Razor.Language.Test.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RazorCodeDocumentExtensionsTest.cs │ ├── RazorCodeDocumentTest.cs │ ├── RazorDiagnosticDescriptorTest.cs │ ├── RazorDiagnosticTest.cs │ ├── RazorEngineBuilderExtensionsTest.cs │ ├── RazorEngineTest.cs │ ├── RazorLanguageVersionTest.cs │ ├── RazorParserFeatureFlagsTest.cs │ ├── RazorProjectEngineBuilderExtensionsTest.cs │ ├── RazorProjectEngineFeatureBaseTest.cs │ ├── RazorProjectEngineTest.cs │ ├── RazorProjectItemTest.cs │ ├── RazorProjectTest.cs │ ├── RazorSourceDocumentTest.cs │ ├── RazorSyntaxTreeTest.cs │ ├── RazorTemplateEngineTest.cs │ ├── SourceChangeTest.cs │ ├── SourceLocationTest.cs │ ├── SourceSpanTest.cs │ ├── StreamSourceDocumentTest.cs │ ├── StringSourceDocumentTest.cs │ ├── TagHelperBinderTest.cs │ ├── TagHelperDescriptorBuilderTest.cs │ ├── TagHelperDescriptorExtensionsTest.cs │ ├── TagHelperMatchingConventionsTest.cs │ ├── TestFiles │ │ ├── DefaultRazorProjectFileSystem │ │ │ ├── Home.cshtml │ │ │ ├── Views │ │ │ │ ├── About │ │ │ │ │ └── About.cshtml │ │ │ │ ├── Home │ │ │ │ │ ├── Index.cshtml │ │ │ │ │ ├── Index.txt │ │ │ │ │ └── _ViewImports.cshtml │ │ │ │ └── _ViewImports.cshtml │ │ │ └── _ViewImports.cshtml │ │ ├── IntegrationTests │ │ │ ├── BasicIntegrationTest │ │ │ │ ├── CustomDirective.cshtml │ │ │ │ ├── CustomDirective.ir.txt │ │ │ │ ├── Empty.cshtml │ │ │ │ ├── Empty.ir.txt │ │ │ │ ├── HelloWorld.cshtml │ │ │ │ └── HelloWorld.ir.txt │ │ │ ├── CodeGenerationIntegrationTest │ │ │ │ ├── AddTagHelperDirective.cshtml │ │ │ │ ├── AddTagHelperDirective_DesignTime.codegen.cs │ │ │ │ ├── AddTagHelperDirective_DesignTime.ir.txt │ │ │ │ ├── AddTagHelperDirective_DesignTime.mappings.txt │ │ │ │ ├── AttributeTargetingTagHelpers.cshtml │ │ │ │ ├── AttributeTargetingTagHelpers_DesignTime.codegen.cs │ │ │ │ ├── AttributeTargetingTagHelpers_DesignTime.ir.txt │ │ │ │ ├── AttributeTargetingTagHelpers_DesignTime.mappings.txt │ │ │ │ ├── AttributeTargetingTagHelpers_Runtime.codegen.cs │ │ │ │ ├── AttributeTargetingTagHelpers_Runtime.ir.txt │ │ │ │ ├── Await.cshtml │ │ │ │ ├── Await_DesignTime.codegen.cs │ │ │ │ ├── Await_DesignTime.ir.txt │ │ │ │ ├── Await_DesignTime.mappings.txt │ │ │ │ ├── Await_Runtime.codegen.cs │ │ │ │ ├── Await_Runtime.ir.txt │ │ │ │ ├── BasicTagHelpers.cshtml │ │ │ │ ├── BasicTagHelpers_DesignTime.codegen.cs │ │ │ │ ├── BasicTagHelpers_DesignTime.ir.txt │ │ │ │ ├── BasicTagHelpers_DesignTime.mappings.txt │ │ │ │ ├── BasicTagHelpers_Prefixed.cshtml │ │ │ │ ├── BasicTagHelpers_Prefixed_DesignTime.codegen.cs │ │ │ │ ├── BasicTagHelpers_Prefixed_DesignTime.ir.txt │ │ │ │ ├── BasicTagHelpers_Prefixed_DesignTime.mappings.txt │ │ │ │ ├── BasicTagHelpers_Prefixed_Runtime.codegen.cs │ │ │ │ ├── BasicTagHelpers_Prefixed_Runtime.ir.txt │ │ │ │ ├── BasicTagHelpers_RemoveTagHelper.cshtml │ │ │ │ ├── BasicTagHelpers_RemoveTagHelper_Runtime.codegen.cs │ │ │ │ ├── BasicTagHelpers_RemoveTagHelper_Runtime.ir.txt │ │ │ │ ├── BasicTagHelpers_Runtime.codegen.cs │ │ │ │ ├── BasicTagHelpers_Runtime.ir.txt │ │ │ │ ├── Blocks.cshtml │ │ │ │ ├── Blocks_DesignTime.codegen.cs │ │ │ │ ├── Blocks_DesignTime.ir.txt │ │ │ │ ├── Blocks_DesignTime.mappings.txt │ │ │ │ ├── Blocks_Runtime.codegen.cs │ │ │ │ ├── Blocks_Runtime.ir.txt │ │ │ │ ├── CSharp7.cshtml │ │ │ │ ├── CSharp7_DesignTime.codegen.cs │ │ │ │ ├── CSharp7_DesignTime.ir.txt │ │ │ │ ├── CSharp7_DesignTime.mappings.txt │ │ │ │ ├── CSharp7_Runtime.codegen.cs │ │ │ │ ├── CSharp7_Runtime.ir.txt │ │ │ │ ├── CodeBlock.cshtml │ │ │ │ ├── CodeBlockAtEOF.cshtml │ │ │ │ ├── CodeBlockAtEOF_DesignTime.codegen.cs │ │ │ │ ├── CodeBlockAtEOF_DesignTime.diagnostics.txt │ │ │ │ ├── CodeBlockAtEOF_DesignTime.ir.txt │ │ │ │ ├── CodeBlockAtEOF_DesignTime.mappings.txt │ │ │ │ ├── CodeBlockAtEOF_Runtime.codegen.cs │ │ │ │ ├── CodeBlockAtEOF_Runtime.diagnostics.txt │ │ │ │ ├── CodeBlockAtEOF_Runtime.ir.txt │ │ │ │ ├── CodeBlockWithTextElement.cshtml │ │ │ │ ├── CodeBlockWithTextElement_DesignTime.codegen.cs │ │ │ │ ├── CodeBlockWithTextElement_DesignTime.ir.txt │ │ │ │ ├── CodeBlockWithTextElement_DesignTime.mappings.txt │ │ │ │ ├── CodeBlockWithTextElement_Runtime.codegen.cs │ │ │ │ ├── CodeBlockWithTextElement_Runtime.ir.txt │ │ │ │ ├── CodeBlock_DesignTime.codegen.cs │ │ │ │ ├── CodeBlock_DesignTime.ir.txt │ │ │ │ ├── CodeBlock_DesignTime.mappings.txt │ │ │ │ ├── CodeBlock_Runtime.codegen.cs │ │ │ │ ├── CodeBlock_Runtime.ir.txt │ │ │ │ ├── ComplexTagHelpers.cshtml │ │ │ │ ├── ComplexTagHelpers_DesignTime.codegen.cs │ │ │ │ ├── ComplexTagHelpers_DesignTime.ir.txt │ │ │ │ ├── ComplexTagHelpers_DesignTime.mappings.txt │ │ │ │ ├── ComplexTagHelpers_Runtime.codegen.cs │ │ │ │ ├── ComplexTagHelpers_Runtime.ir.txt │ │ │ │ ├── ConditionalAttributes.cshtml │ │ │ │ ├── ConditionalAttributes_DesignTime.codegen.cs │ │ │ │ ├── ConditionalAttributes_DesignTime.ir.txt │ │ │ │ ├── ConditionalAttributes_DesignTime.mappings.txt │ │ │ │ ├── ConditionalAttributes_Runtime.codegen.cs │ │ │ │ ├── ConditionalAttributes_Runtime.ir.txt │ │ │ │ ├── CssSelectorTagHelperAttributes.cshtml │ │ │ │ ├── CssSelectorTagHelperAttributes_Runtime.codegen.cs │ │ │ │ ├── CssSelectorTagHelperAttributes_Runtime.ir.txt │ │ │ │ ├── DesignTime.cshtml │ │ │ │ ├── DesignTime_DesignTime.codegen.cs │ │ │ │ ├── DesignTime_DesignTime.ir.txt │ │ │ │ ├── DesignTime_DesignTime.mappings.txt │ │ │ │ ├── DuplicateAttributeTagHelpers.cshtml │ │ │ │ ├── DuplicateAttributeTagHelpers_DesignTime.codegen.cs │ │ │ │ ├── DuplicateAttributeTagHelpers_DesignTime.ir.txt │ │ │ │ ├── DuplicateAttributeTagHelpers_DesignTime.mappings.txt │ │ │ │ ├── DuplicateAttributeTagHelpers_Runtime.codegen.cs │ │ │ │ ├── DuplicateAttributeTagHelpers_Runtime.ir.txt │ │ │ │ ├── DuplicateTargetTagHelper.cshtml │ │ │ │ ├── DuplicateTargetTagHelper_DesignTime.codegen.cs │ │ │ │ ├── DuplicateTargetTagHelper_DesignTime.ir.txt │ │ │ │ ├── DuplicateTargetTagHelper_DesignTime.mappings.txt │ │ │ │ ├── DuplicateTargetTagHelper_Runtime.codegen.cs │ │ │ │ ├── DuplicateTargetTagHelper_Runtime.ir.txt │ │ │ │ ├── DynamicAttributeTagHelpers.cshtml │ │ │ │ ├── DynamicAttributeTagHelpers_DesignTime.codegen.cs │ │ │ │ ├── DynamicAttributeTagHelpers_DesignTime.ir.txt │ │ │ │ ├── DynamicAttributeTagHelpers_DesignTime.mappings.txt │ │ │ │ ├── DynamicAttributeTagHelpers_Runtime.codegen.cs │ │ │ │ ├── DynamicAttributeTagHelpers_Runtime.ir.txt │ │ │ │ ├── EmptyAttributeTagHelpers.cshtml │ │ │ │ ├── EmptyAttributeTagHelpers_DesignTime.codegen.cs │ │ │ │ ├── EmptyAttributeTagHelpers_DesignTime.diagnostics.txt │ │ │ │ ├── EmptyAttributeTagHelpers_DesignTime.ir.txt │ │ │ │ ├── EmptyAttributeTagHelpers_DesignTime.mappings.txt │ │ │ │ ├── EmptyAttributeTagHelpers_Runtime.codegen.cs │ │ │ │ ├── EmptyAttributeTagHelpers_Runtime.diagnostics.txt │ │ │ │ ├── EmptyAttributeTagHelpers_Runtime.ir.txt │ │ │ │ ├── EmptyCodeBlock.cshtml │ │ │ │ ├── EmptyCodeBlock_DesignTime.codegen.cs │ │ │ │ ├── EmptyCodeBlock_DesignTime.ir.txt │ │ │ │ ├── EmptyCodeBlock_DesignTime.mappings.txt │ │ │ │ ├── EmptyCodeBlock_Runtime.codegen.cs │ │ │ │ ├── EmptyCodeBlock_Runtime.ir.txt │ │ │ │ ├── EmptyExplicitExpression.cshtml │ │ │ │ ├── EmptyExplicitExpression_DesignTime.codegen.cs │ │ │ │ ├── EmptyExplicitExpression_DesignTime.ir.txt │ │ │ │ ├── EmptyExplicitExpression_DesignTime.mappings.txt │ │ │ │ ├── EmptyExplicitExpression_Runtime.codegen.cs │ │ │ │ ├── EmptyExplicitExpression_Runtime.ir.txt │ │ │ │ ├── EmptyImplicitExpression.cshtml │ │ │ │ ├── EmptyImplicitExpressionInCode.cshtml │ │ │ │ ├── EmptyImplicitExpressionInCode_DesignTime.codegen.cs │ │ │ │ ├── EmptyImplicitExpressionInCode_DesignTime.diagnostics.txt │ │ │ │ ├── EmptyImplicitExpressionInCode_DesignTime.ir.txt │ │ │ │ ├── EmptyImplicitExpressionInCode_DesignTime.mappings.txt │ │ │ │ ├── EmptyImplicitExpressionInCode_Runtime.codegen.cs │ │ │ │ ├── EmptyImplicitExpressionInCode_Runtime.diagnostics.txt │ │ │ │ ├── EmptyImplicitExpressionInCode_Runtime.ir.txt │ │ │ │ ├── EmptyImplicitExpression_DesignTime.codegen.cs │ │ │ │ ├── EmptyImplicitExpression_DesignTime.diagnostics.txt │ │ │ │ ├── EmptyImplicitExpression_DesignTime.ir.txt │ │ │ │ ├── EmptyImplicitExpression_DesignTime.mappings.txt │ │ │ │ ├── EmptyImplicitExpression_Runtime.codegen.cs │ │ │ │ ├── EmptyImplicitExpression_Runtime.diagnostics.txt │ │ │ │ ├── EmptyImplicitExpression_Runtime.ir.txt │ │ │ │ ├── EnumTagHelpers.cshtml │ │ │ │ ├── EnumTagHelpers_DesignTime.codegen.cs │ │ │ │ ├── EnumTagHelpers_DesignTime.ir.txt │ │ │ │ ├── EnumTagHelpers_DesignTime.mappings.txt │ │ │ │ ├── EnumTagHelpers_Runtime.codegen.cs │ │ │ │ ├── EnumTagHelpers_Runtime.ir.txt │ │ │ │ ├── EscapedTagHelpers.cshtml │ │ │ │ ├── EscapedTagHelpers_DesignTime.codegen.cs │ │ │ │ ├── EscapedTagHelpers_DesignTime.ir.txt │ │ │ │ ├── EscapedTagHelpers_DesignTime.mappings.txt │ │ │ │ ├── EscapedTagHelpers_Runtime.codegen.cs │ │ │ │ ├── EscapedTagHelpers_Runtime.ir.txt │ │ │ │ ├── ExplicitExpression.cshtml │ │ │ │ ├── ExplicitExpressionAtEOF.cshtml │ │ │ │ ├── ExplicitExpressionAtEOF_DesignTime.codegen.cs │ │ │ │ ├── ExplicitExpressionAtEOF_DesignTime.diagnostics.txt │ │ │ │ ├── ExplicitExpressionAtEOF_DesignTime.ir.txt │ │ │ │ ├── ExplicitExpressionAtEOF_DesignTime.mappings.txt │ │ │ │ ├── ExplicitExpressionAtEOF_Runtime.codegen.cs │ │ │ │ ├── ExplicitExpressionAtEOF_Runtime.diagnostics.txt │ │ │ │ ├── ExplicitExpressionAtEOF_Runtime.ir.txt │ │ │ │ ├── ExplicitExpressionWithMarkup.cshtml │ │ │ │ ├── ExplicitExpressionWithMarkup_DesignTime.codegen.cs │ │ │ │ ├── ExplicitExpressionWithMarkup_DesignTime.diagnostics.txt │ │ │ │ ├── ExplicitExpressionWithMarkup_DesignTime.ir.txt │ │ │ │ ├── ExplicitExpressionWithMarkup_DesignTime.mappings.txt │ │ │ │ ├── ExplicitExpressionWithMarkup_Runtime.codegen.cs │ │ │ │ ├── ExplicitExpressionWithMarkup_Runtime.diagnostics.txt │ │ │ │ ├── ExplicitExpressionWithMarkup_Runtime.ir.txt │ │ │ │ ├── ExplicitExpression_DesignTime.codegen.cs │ │ │ │ ├── ExplicitExpression_DesignTime.ir.txt │ │ │ │ ├── ExplicitExpression_DesignTime.mappings.txt │ │ │ │ ├── ExplicitExpression_Runtime.codegen.cs │ │ │ │ ├── ExplicitExpression_Runtime.ir.txt │ │ │ │ ├── ExpressionsInCode.cshtml │ │ │ │ ├── ExpressionsInCode_DesignTime.codegen.cs │ │ │ │ ├── ExpressionsInCode_DesignTime.ir.txt │ │ │ │ ├── ExpressionsInCode_DesignTime.mappings.txt │ │ │ │ ├── ExpressionsInCode_Runtime.codegen.cs │ │ │ │ ├── ExpressionsInCode_Runtime.ir.txt │ │ │ │ ├── FunctionsBlock.cshtml │ │ │ │ ├── FunctionsBlockMinimal.cshtml │ │ │ │ ├── FunctionsBlockMinimal_DesignTime.codegen.cs │ │ │ │ ├── FunctionsBlockMinimal_DesignTime.ir.txt │ │ │ │ ├── FunctionsBlockMinimal_DesignTime.mappings.txt │ │ │ │ ├── FunctionsBlockMinimal_Runtime.codegen.cs │ │ │ │ ├── FunctionsBlockMinimal_Runtime.ir.txt │ │ │ │ ├── FunctionsBlock_DesignTime.codegen.cs │ │ │ │ ├── FunctionsBlock_DesignTime.ir.txt │ │ │ │ ├── FunctionsBlock_DesignTime.mappings.txt │ │ │ │ ├── FunctionsBlock_Runtime.codegen.cs │ │ │ │ ├── FunctionsBlock_Runtime.ir.txt │ │ │ │ ├── HiddenSpansInCode.cshtml │ │ │ │ ├── HiddenSpansInCode_DesignTime.codegen.cs │ │ │ │ ├── HiddenSpansInCode_DesignTime.ir.txt │ │ │ │ ├── HiddenSpansInCode_DesignTime.mappings.txt │ │ │ │ ├── HiddenSpansInCode_Runtime.codegen.cs │ │ │ │ ├── HiddenSpansInCode_Runtime.ir.txt │ │ │ │ ├── HtmlCommentWithQuote_Double.cshtml │ │ │ │ ├── HtmlCommentWithQuote_Double_DesignTime.codegen.cs │ │ │ │ ├── HtmlCommentWithQuote_Double_DesignTime.ir.txt │ │ │ │ ├── HtmlCommentWithQuote_Double_DesignTime.mappings.txt │ │ │ │ ├── HtmlCommentWithQuote_Double_Runtime.codegen.cs │ │ │ │ ├── HtmlCommentWithQuote_Double_Runtime.ir.txt │ │ │ │ ├── HtmlCommentWithQuote_Single.cshtml │ │ │ │ ├── HtmlCommentWithQuote_Single_DesignTime.codegen.cs │ │ │ │ ├── HtmlCommentWithQuote_Single_DesignTime.ir.txt │ │ │ │ ├── HtmlCommentWithQuote_Single_DesignTime.mappings.txt │ │ │ │ ├── HtmlCommentWithQuote_Single_Runtime.codegen.cs │ │ │ │ ├── HtmlCommentWithQuote_Single_Runtime.ir.txt │ │ │ │ ├── ImplicitExpression.cshtml │ │ │ │ ├── ImplicitExpressionAtEOF.cshtml │ │ │ │ ├── ImplicitExpressionAtEOF_DesignTime.codegen.cs │ │ │ │ ├── ImplicitExpressionAtEOF_DesignTime.diagnostics.txt │ │ │ │ ├── ImplicitExpressionAtEOF_DesignTime.ir.txt │ │ │ │ ├── ImplicitExpressionAtEOF_DesignTime.mappings.txt │ │ │ │ ├── ImplicitExpressionAtEOF_Runtime.codegen.cs │ │ │ │ ├── ImplicitExpressionAtEOF_Runtime.diagnostics.txt │ │ │ │ ├── ImplicitExpressionAtEOF_Runtime.ir.txt │ │ │ │ ├── ImplicitExpression_DesignTime.codegen.cs │ │ │ │ ├── ImplicitExpression_DesignTime.ir.txt │ │ │ │ ├── ImplicitExpression_DesignTime.mappings.txt │ │ │ │ ├── ImplicitExpression_Runtime.codegen.cs │ │ │ │ ├── ImplicitExpression_Runtime.ir.txt │ │ │ │ ├── IncompleteDirectives.cshtml │ │ │ │ ├── IncompleteDirectives_DesignTime.codegen.cs │ │ │ │ ├── IncompleteDirectives_DesignTime.diagnostics.txt │ │ │ │ ├── IncompleteDirectives_DesignTime.ir.txt │ │ │ │ ├── IncompleteDirectives_DesignTime.mappings.txt │ │ │ │ ├── IncompleteDirectives_Runtime.codegen.cs │ │ │ │ ├── IncompleteDirectives_Runtime.diagnostics.txt │ │ │ │ ├── IncompleteDirectives_Runtime.ir.txt │ │ │ │ ├── IncompleteTagHelper.cshtml │ │ │ │ ├── IncompleteTagHelper_DesignTime.codegen.cs │ │ │ │ ├── IncompleteTagHelper_DesignTime.diagnostics.txt │ │ │ │ ├── IncompleteTagHelper_DesignTime.ir.txt │ │ │ │ ├── IncompleteTagHelper_DesignTime.mappings.txt │ │ │ │ ├── IncompleteTagHelper_Runtime.codegen.cs │ │ │ │ ├── IncompleteTagHelper_Runtime.diagnostics.txt │ │ │ │ ├── IncompleteTagHelper_Runtime.ir.txt │ │ │ │ ├── Inherits.cshtml │ │ │ │ ├── Inherits_DesignTime.codegen.cs │ │ │ │ ├── Inherits_DesignTime.ir.txt │ │ │ │ ├── Inherits_DesignTime.mappings.txt │ │ │ │ ├── Inherits_Runtime.codegen.cs │ │ │ │ ├── Inherits_Runtime.ir.txt │ │ │ │ ├── InlineBlocks.cshtml │ │ │ │ ├── InlineBlocks_DesignTime.codegen.cs │ │ │ │ ├── InlineBlocks_DesignTime.diagnostics.txt │ │ │ │ ├── InlineBlocks_DesignTime.ir.txt │ │ │ │ ├── InlineBlocks_DesignTime.mappings.txt │ │ │ │ ├── InlineBlocks_Runtime.codegen.cs │ │ │ │ ├── InlineBlocks_Runtime.diagnostics.txt │ │ │ │ ├── InlineBlocks_Runtime.ir.txt │ │ │ │ ├── Instrumented.cshtml │ │ │ │ ├── Instrumented_DesignTime.codegen.cs │ │ │ │ ├── Instrumented_DesignTime.ir.txt │ │ │ │ ├── Instrumented_DesignTime.mappings.txt │ │ │ │ ├── Instrumented_Runtime.codegen.cs │ │ │ │ ├── Instrumented_Runtime.ir.txt │ │ │ │ ├── MarkupInCodeBlock.cshtml │ │ │ │ ├── MarkupInCodeBlock_DesignTime.codegen.cs │ │ │ │ ├── MarkupInCodeBlock_DesignTime.ir.txt │ │ │ │ ├── MarkupInCodeBlock_DesignTime.mappings.txt │ │ │ │ ├── MarkupInCodeBlock_Runtime.codegen.cs │ │ │ │ ├── MarkupInCodeBlock_Runtime.ir.txt │ │ │ │ ├── MinimizedTagHelpers.cshtml │ │ │ │ ├── MinimizedTagHelpers_DesignTime.codegen.cs │ │ │ │ ├── MinimizedTagHelpers_DesignTime.ir.txt │ │ │ │ ├── MinimizedTagHelpers_DesignTime.mappings.txt │ │ │ │ ├── MinimizedTagHelpers_Runtime.codegen.cs │ │ │ │ ├── MinimizedTagHelpers_Runtime.ir.txt │ │ │ │ ├── NestedCSharp.cshtml │ │ │ │ ├── NestedCSharp_DesignTime.codegen.cs │ │ │ │ ├── NestedCSharp_DesignTime.ir.txt │ │ │ │ ├── NestedCSharp_DesignTime.mappings.txt │ │ │ │ ├── NestedCSharp_Runtime.codegen.cs │ │ │ │ ├── NestedCSharp_Runtime.ir.txt │ │ │ │ ├── NestedCodeBlocks.cshtml │ │ │ │ ├── NestedCodeBlocks_DesignTime.codegen.cs │ │ │ │ ├── NestedCodeBlocks_DesignTime.ir.txt │ │ │ │ ├── NestedCodeBlocks_DesignTime.mappings.txt │ │ │ │ ├── NestedCodeBlocks_Runtime.codegen.cs │ │ │ │ ├── NestedCodeBlocks_Runtime.ir.txt │ │ │ │ ├── NestedScriptTagTagHelpers.cshtml │ │ │ │ ├── NestedScriptTagTagHelpers_DesignTime.codegen.cs │ │ │ │ ├── NestedScriptTagTagHelpers_DesignTime.ir.txt │ │ │ │ ├── NestedScriptTagTagHelpers_DesignTime.mappings.txt │ │ │ │ ├── NestedScriptTagTagHelpers_Runtime.codegen.cs │ │ │ │ ├── NestedScriptTagTagHelpers_Runtime.ir.txt │ │ │ │ ├── NestedTagHelpers.cshtml │ │ │ │ ├── NestedTagHelpers_DesignTime.codegen.cs │ │ │ │ ├── NestedTagHelpers_DesignTime.ir.txt │ │ │ │ ├── NestedTagHelpers_DesignTime.mappings.txt │ │ │ │ ├── NestedTagHelpers_Runtime.codegen.cs │ │ │ │ ├── NestedTagHelpers_Runtime.ir.txt │ │ │ │ ├── NoLinePragmas.cshtml │ │ │ │ ├── NoLinePragmas_DesignTime.codegen.cs │ │ │ │ ├── NoLinePragmas_DesignTime.ir.txt │ │ │ │ ├── NoLinePragmas_DesignTime.mappings.txt │ │ │ │ ├── NoLinePragmas_Runtime.codegen.cs │ │ │ │ ├── NoLinePragmas_Runtime.ir.txt │ │ │ │ ├── NullConditionalExpressions.cshtml │ │ │ │ ├── NullConditionalExpressions_DesignTime.codegen.cs │ │ │ │ ├── NullConditionalExpressions_DesignTime.ir.txt │ │ │ │ ├── NullConditionalExpressions_DesignTime.mappings.txt │ │ │ │ ├── NullConditionalExpressions_Runtime.codegen.cs │ │ │ │ ├── NullConditionalExpressions_Runtime.ir.txt │ │ │ │ ├── OpenedIf.cshtml │ │ │ │ ├── OpenedIf_DesignTime.codegen.cs │ │ │ │ ├── OpenedIf_DesignTime.diagnostics.txt │ │ │ │ ├── OpenedIf_DesignTime.ir.txt │ │ │ │ ├── OpenedIf_DesignTime.mappings.txt │ │ │ │ ├── OpenedIf_Runtime.codegen.cs │ │ │ │ ├── OpenedIf_Runtime.diagnostics.txt │ │ │ │ ├── OpenedIf_Runtime.ir.txt │ │ │ │ ├── ParserError.cshtml │ │ │ │ ├── ParserError_DesignTime.codegen.cs │ │ │ │ ├── ParserError_DesignTime.diagnostics.txt │ │ │ │ ├── ParserError_DesignTime.ir.txt │ │ │ │ ├── ParserError_DesignTime.mappings.txt │ │ │ │ ├── ParserError_Runtime.codegen.cs │ │ │ │ ├── ParserError_Runtime.diagnostics.txt │ │ │ │ ├── ParserError_Runtime.ir.txt │ │ │ │ ├── PrefixedAttributeTagHelpers.cshtml │ │ │ │ ├── PrefixedAttributeTagHelpers_DesignTime.codegen.cs │ │ │ │ ├── PrefixedAttributeTagHelpers_DesignTime.ir.txt │ │ │ │ ├── PrefixedAttributeTagHelpers_DesignTime.mappings.txt │ │ │ │ ├── PrefixedAttributeTagHelpers_Runtime.codegen.cs │ │ │ │ ├── PrefixedAttributeTagHelpers_Runtime.ir.txt │ │ │ │ ├── RazorComments.cshtml │ │ │ │ ├── RazorComments_DesignTime.codegen.cs │ │ │ │ ├── RazorComments_DesignTime.ir.txt │ │ │ │ ├── RazorComments_DesignTime.mappings.txt │ │ │ │ ├── RazorComments_Runtime.codegen.cs │ │ │ │ ├── RazorComments_Runtime.ir.txt │ │ │ │ ├── RemoveTagHelperDirective.cshtml │ │ │ │ ├── RemoveTagHelperDirective_DesignTime.codegen.cs │ │ │ │ ├── RemoveTagHelperDirective_DesignTime.ir.txt │ │ │ │ ├── RemoveTagHelperDirective_DesignTime.mappings.txt │ │ │ │ ├── Sections.cshtml │ │ │ │ ├── Sections_DesignTime.codegen.cs │ │ │ │ ├── Sections_DesignTime.ir.txt │ │ │ │ ├── Sections_DesignTime.mappings.txt │ │ │ │ ├── Sections_Runtime.codegen.cs │ │ │ │ ├── Sections_Runtime.ir.txt │ │ │ │ ├── SimpleTagHelpers.cshtml │ │ │ │ ├── SimpleTagHelpers_DesignTime.codegen.cs │ │ │ │ ├── SimpleTagHelpers_DesignTime.ir.txt │ │ │ │ ├── SimpleTagHelpers_DesignTime.mappings.txt │ │ │ │ ├── SimpleTagHelpers_Runtime.codegen.cs │ │ │ │ ├── SimpleTagHelpers_Runtime.ir.txt │ │ │ │ ├── SimpleUnspacedIf.cshtml │ │ │ │ ├── SimpleUnspacedIf_DesignTime.codegen.cs │ │ │ │ ├── SimpleUnspacedIf_DesignTime.ir.txt │ │ │ │ ├── SimpleUnspacedIf_DesignTime.mappings.txt │ │ │ │ ├── SimpleUnspacedIf_Runtime.codegen.cs │ │ │ │ ├── SimpleUnspacedIf_Runtime.ir.txt │ │ │ │ ├── SingleTagHelper.cshtml │ │ │ │ ├── SingleTagHelperWithNewlineBeforeAttributes.cshtml │ │ │ │ ├── SingleTagHelperWithNewlineBeforeAttributes_DesignTime.codegen.cs │ │ │ │ ├── SingleTagHelperWithNewlineBeforeAttributes_DesignTime.ir.txt │ │ │ │ ├── SingleTagHelperWithNewlineBeforeAttributes_DesignTime.mappings.txt │ │ │ │ ├── SingleTagHelperWithNewlineBeforeAttributes_Runtime.codegen.cs │ │ │ │ ├── SingleTagHelperWithNewlineBeforeAttributes_Runtime.ir.txt │ │ │ │ ├── SingleTagHelper_DesignTime.codegen.cs │ │ │ │ ├── SingleTagHelper_DesignTime.ir.txt │ │ │ │ ├── SingleTagHelper_DesignTime.mappings.txt │ │ │ │ ├── SingleTagHelper_Runtime.codegen.cs │ │ │ │ ├── SingleTagHelper_Runtime.ir.txt │ │ │ │ ├── StringLiterals.cshtml │ │ │ │ ├── StringLiterals_DesignTime.codegen.cs │ │ │ │ ├── StringLiterals_DesignTime.ir.txt │ │ │ │ ├── StringLiterals_DesignTime.mappings.txt │ │ │ │ ├── StringLiterals_Runtime.codegen.cs │ │ │ │ ├── StringLiterals_Runtime.ir.txt │ │ │ │ ├── SymbolBoundAttributes.cshtml │ │ │ │ ├── SymbolBoundAttributes_DesignTime.codegen.cs │ │ │ │ ├── SymbolBoundAttributes_DesignTime.diagnostics.txt │ │ │ │ ├── SymbolBoundAttributes_DesignTime.ir.txt │ │ │ │ ├── SymbolBoundAttributes_DesignTime.mappings.txt │ │ │ │ ├── SymbolBoundAttributes_Runtime.codegen.cs │ │ │ │ ├── SymbolBoundAttributes_Runtime.diagnostics.txt │ │ │ │ ├── SymbolBoundAttributes_Runtime.ir.txt │ │ │ │ ├── TagHelpersInSection.cshtml │ │ │ │ ├── TagHelpersInSection_Runtime.codegen.cs │ │ │ │ ├── TagHelpersInSection_Runtime.ir.txt │ │ │ │ ├── TagHelpersWithBoundAttributes.cshtml │ │ │ │ ├── TagHelpersWithBoundAttributes_DesignTime.codegen.cs │ │ │ │ ├── TagHelpersWithBoundAttributes_DesignTime.ir.txt │ │ │ │ ├── TagHelpersWithBoundAttributes_DesignTime.mappings.txt │ │ │ │ ├── TagHelpersWithBoundAttributes_Runtime.codegen.cs │ │ │ │ ├── TagHelpersWithBoundAttributes_Runtime.ir.txt │ │ │ │ ├── TagHelpersWithPrefix.cshtml │ │ │ │ ├── TagHelpersWithPrefix_DesignTime.codegen.cs │ │ │ │ ├── TagHelpersWithPrefix_DesignTime.ir.txt │ │ │ │ ├── TagHelpersWithPrefix_DesignTime.mappings.txt │ │ │ │ ├── TagHelpersWithPrefix_Runtime.codegen.cs │ │ │ │ ├── TagHelpersWithPrefix_Runtime.ir.txt │ │ │ │ ├── TagHelpersWithTemplate.cshtml │ │ │ │ ├── TagHelpersWithTemplate_DesignTime.codegen.cs │ │ │ │ ├── TagHelpersWithTemplate_DesignTime.ir.txt │ │ │ │ ├── TagHelpersWithTemplate_DesignTime.mappings.txt │ │ │ │ ├── TagHelpersWithTemplate_Runtime.codegen.cs │ │ │ │ ├── TagHelpersWithTemplate_Runtime.ir.txt │ │ │ │ ├── TagHelpersWithWeirdlySpacedAttributes.cshtml │ │ │ │ ├── TagHelpersWithWeirdlySpacedAttributes_DesignTime.codegen.cs │ │ │ │ ├── TagHelpersWithWeirdlySpacedAttributes_DesignTime.ir.txt │ │ │ │ ├── TagHelpersWithWeirdlySpacedAttributes_DesignTime.mappings.txt │ │ │ │ ├── TagHelpersWithWeirdlySpacedAttributes_Runtime.codegen.cs │ │ │ │ ├── TagHelpersWithWeirdlySpacedAttributes_Runtime.ir.txt │ │ │ │ ├── Templates.cshtml │ │ │ │ ├── Templates_DesignTime.codegen.cs │ │ │ │ ├── Templates_DesignTime.ir.txt │ │ │ │ ├── Templates_DesignTime.mappings.txt │ │ │ │ ├── Templates_Runtime.codegen.cs │ │ │ │ ├── Templates_Runtime.ir.txt │ │ │ │ ├── TransitionsInTagHelperAttributes.cshtml │ │ │ │ ├── TransitionsInTagHelperAttributes_DesignTime.codegen.cs │ │ │ │ ├── TransitionsInTagHelperAttributes_DesignTime.diagnostics.txt │ │ │ │ ├── TransitionsInTagHelperAttributes_DesignTime.ir.txt │ │ │ │ ├── TransitionsInTagHelperAttributes_DesignTime.mappings.txt │ │ │ │ ├── TransitionsInTagHelperAttributes_Runtime.codegen.cs │ │ │ │ ├── TransitionsInTagHelperAttributes_Runtime.diagnostics.txt │ │ │ │ ├── TransitionsInTagHelperAttributes_Runtime.ir.txt │ │ │ │ ├── UnfinishedExpressionInCode.cshtml │ │ │ │ ├── UnfinishedExpressionInCode_DesignTime.codegen.cs │ │ │ │ ├── UnfinishedExpressionInCode_DesignTime.ir.txt │ │ │ │ ├── UnfinishedExpressionInCode_DesignTime.mappings.txt │ │ │ │ ├── UnfinishedExpressionInCode_Runtime.codegen.cs │ │ │ │ ├── UnfinishedExpressionInCode_Runtime.ir.txt │ │ │ │ ├── Usings.cshtml │ │ │ │ ├── Usings_DesignTime.codegen.cs │ │ │ │ ├── Usings_DesignTime.ir.txt │ │ │ │ ├── Usings_DesignTime.mappings.txt │ │ │ │ ├── Usings_Runtime.codegen.cs │ │ │ │ └── Usings_Runtime.ir.txt │ │ │ ├── ComponentIntegrationTest │ │ │ │ ├── BasicTest.codegen.cs │ │ │ │ ├── BasicTest.ir.txt │ │ │ │ └── BasicTest.razor │ │ │ ├── ExtensibleDirectiveTest │ │ │ │ ├── NamespaceToken.codegen.cs │ │ │ │ ├── NamespaceToken.cshtml │ │ │ │ ├── NamespaceToken.ir.txt │ │ │ │ └── NamespaceToken.mappings.txt │ │ │ ├── HtmlAttributeIntegrationTest │ │ │ │ ├── HtmlWithConditionalAttribute.cshtml │ │ │ │ ├── HtmlWithConditionalAttribute.ir.txt │ │ │ │ ├── HtmlWithDataDashAttribute.cshtml │ │ │ │ └── HtmlWithDataDashAttribute.ir.txt │ │ │ ├── RazorTemplateEngineIntegrationTest │ │ │ │ ├── GenerateCodeWithBaseType.codegen.cs │ │ │ │ ├── GenerateCodeWithBaseType.cshtml │ │ │ │ ├── GenerateCodeWithConfigureClass.codegen.cs │ │ │ │ ├── GenerateCodeWithConfigureClass.cshtml │ │ │ │ ├── GenerateCodeWithDefaults.codegen.cs │ │ │ │ ├── GenerateCodeWithDefaults.cshtml │ │ │ │ ├── GenerateCodeWithSetNamespace.codegen.cs │ │ │ │ └── GenerateCodeWithSetNamespace.cshtml │ │ │ ├── SuppressPrimaryMethodBodyIntegrationTest │ │ │ │ ├── BasicTest.codegen.cs │ │ │ │ ├── BasicTest.ir.txt │ │ │ │ └── BasicTest.razor │ │ │ └── TagHelpersIntegrationTest │ │ │ │ ├── NestedTagHelpers.cshtml │ │ │ │ ├── NestedTagHelpers.ir.txt │ │ │ │ ├── SimpleTagHelpers.cshtml │ │ │ │ ├── SimpleTagHelpers.ir.txt │ │ │ │ ├── TagHelpersWithBoundAttributes.cshtml │ │ │ │ └── TagHelpersWithBoundAttributes.ir.txt │ │ ├── ParserTests │ │ │ ├── CSharpAutoCompleteTest │ │ │ │ ├── FunctionsDirectiveAutoCompleteAtEOF.cspans.txt │ │ │ │ ├── FunctionsDirectiveAutoCompleteAtEOF.stree.txt │ │ │ │ ├── FunctionsDirectiveAutoCompleteAtStartOfFile.cspans.txt │ │ │ │ ├── FunctionsDirectiveAutoCompleteAtStartOfFile.stree.txt │ │ │ │ ├── SectionDirectiveAutoCompleteAtEOF.cspans.txt │ │ │ │ ├── SectionDirectiveAutoCompleteAtEOF.stree.txt │ │ │ │ ├── SectionDirectiveAutoCompleteAtStartOfFile.cspans.txt │ │ │ │ ├── SectionDirectiveAutoCompleteAtStartOfFile.stree.txt │ │ │ │ ├── VerbatimBlockAutoCompleteAtEOF.cspans.txt │ │ │ │ ├── VerbatimBlockAutoCompleteAtEOF.diag.txt │ │ │ │ ├── VerbatimBlockAutoCompleteAtEOF.stree.txt │ │ │ │ ├── VerbatimBlockAutoCompleteAtStartOfFile.cspans.txt │ │ │ │ ├── VerbatimBlockAutoCompleteAtStartOfFile.diag.txt │ │ │ │ └── VerbatimBlockAutoCompleteAtStartOfFile.stree.txt │ │ │ ├── CSharpBlockTest │ │ │ │ ├── AcceptsElseIfWithNoCondition.cspans.txt │ │ │ │ ├── AcceptsElseIfWithNoCondition.stree.txt │ │ │ │ ├── AcceptsTrailingDotIntoImplicitExpressionWhenEmbeddedInCode.cspans.txt │ │ │ │ ├── AcceptsTrailingDotIntoImplicitExpressionWhenEmbeddedInCode.stree.txt │ │ │ │ ├── AllowsEmptyBlockStatement.cspans.txt │ │ │ │ ├── AllowsEmptyBlockStatement.stree.txt │ │ │ │ ├── BalancingBracketsIgnoresStringLiteralCharactersAndBrackets.cspans.txt │ │ │ │ ├── BalancingBracketsIgnoresStringLiteralCharactersAndBrackets.stree.txt │ │ │ │ ├── BalancingBracketsIgnoresStringLiteralCharactersAndBracketsInsideBlockComments.cspans.txt │ │ │ │ ├── BalancingBracketsIgnoresStringLiteralCharactersAndBracketsInsideBlockComments.stree.txt │ │ │ │ ├── CapturesNewlineAfterUsing.cspans.txt │ │ │ │ ├── CapturesNewlineAfterUsing.stree.txt │ │ │ │ ├── CorrectlyParsesDoWhileBlock.cspans.txt │ │ │ │ ├── CorrectlyParsesDoWhileBlock.stree.txt │ │ │ │ ├── CorrectlyParsesDoWhileBlockMissingSemicolon.cspans.txt │ │ │ │ ├── CorrectlyParsesDoWhileBlockMissingSemicolon.stree.txt │ │ │ │ ├── CorrectlyParsesDoWhileBlockMissingWhileClauseEntirely.cspans.txt │ │ │ │ ├── CorrectlyParsesDoWhileBlockMissingWhileClauseEntirely.stree.txt │ │ │ │ ├── CorrectlyParsesDoWhileBlockMissingWhileCondition.cspans.txt │ │ │ │ ├── CorrectlyParsesDoWhileBlockMissingWhileCondition.stree.txt │ │ │ │ ├── CorrectlyParsesDoWhileBlockMissingWhileConditionWithSemicolon.cspans.txt │ │ │ │ ├── CorrectlyParsesDoWhileBlockMissingWhileConditionWithSemicolon.stree.txt │ │ │ │ ├── CorrectlyParsesMarkupInDoWhileBlock.cspans.txt │ │ │ │ ├── CorrectlyParsesMarkupInDoWhileBlock.stree.txt │ │ │ │ ├── DoesNotAllowMultipleFinallyBlocks.cspans.txt │ │ │ │ ├── DoesNotAllowMultipleFinallyBlocks.stree.txt │ │ │ │ ├── DoesNotParseOnSwitchCharacterNotFollowedByOpenAngleOrColon.cspans.txt │ │ │ │ ├── DoesNotParseOnSwitchCharacterNotFollowedByOpenAngleOrColon.stree.txt │ │ │ │ ├── DoesntCaptureWhitespaceAfterUsing.cspans.txt │ │ │ │ ├── DoesntCaptureWhitespaceAfterUsing.stree.txt │ │ │ │ ├── HasErrorsIfNamespaceAliasMissingSemicolon.cspans.txt │ │ │ │ ├── HasErrorsIfNamespaceAliasMissingSemicolon.stree.txt │ │ │ │ ├── HasErrorsIfNamespaceImportMissingSemicolon.cspans.txt │ │ │ │ ├── HasErrorsIfNamespaceImportMissingSemicolon.stree.txt │ │ │ │ ├── NestedCodeBlockWithAtDoesntCauseError.cspans.txt │ │ │ │ ├── NestedCodeBlockWithAtDoesntCauseError.stree.txt │ │ │ │ ├── NestedCodeBlockWithCSharpAt.cspans.txt │ │ │ │ ├── NestedCodeBlockWithCSharpAt.stree.txt │ │ │ │ ├── NestedCodeBlockWithMarkupSetsDotAsMarkup.cspans.txt │ │ │ │ ├── NestedCodeBlockWithMarkupSetsDotAsMarkup.stree.txt │ │ │ │ ├── ParsersCanNestRecursively.cspans.txt │ │ │ │ ├── ParsersCanNestRecursively.stree.txt │ │ │ │ ├── ParsesElseIfBranchesOfIfStatement.cspans.txt │ │ │ │ ├── ParsesElseIfBranchesOfIfStatement.stree.txt │ │ │ │ ├── ParsesExpressionOnSwitchCharacterFollowedByIdentifierStart.cspans.txt │ │ │ │ ├── ParsesExpressionOnSwitchCharacterFollowedByIdentifierStart.stree.txt │ │ │ │ ├── ParsesExpressionOnSwitchCharacterFollowedByOpenParen.cspans.txt │ │ │ │ ├── ParsesExpressionOnSwitchCharacterFollowedByOpenParen.stree.txt │ │ │ │ ├── ParsesMultipleElseIfBranchesOfIfStatement.cspans.txt │ │ │ │ ├── ParsesMultipleElseIfBranchesOfIfStatement.stree.txt │ │ │ │ ├── ParsesMultipleElseIfBranchesOfIfStatementFollowedByOneElseBranch.cspans.txt │ │ │ │ ├── ParsesMultipleElseIfBranchesOfIfStatementFollowedByOneElseBranch.stree.txt │ │ │ │ ├── ParsesNamespaceAliasWithSemicolonForUsingKeywordIfIsInValidFormat.cspans.txt │ │ │ │ ├── ParsesNamespaceAliasWithSemicolonForUsingKeywordIfIsInValidFormat.stree.txt │ │ │ │ ├── ParsesNamespaceImportWithSemicolonForUsingKeywordIfIsInValidFormat.cspans.txt │ │ │ │ ├── ParsesNamespaceImportWithSemicolonForUsingKeywordIfIsInValidFormat.stree.txt │ │ │ │ ├── SkipsExprThenBalancesBracesIfFirstIdentifierIsForKeyword.cspans.txt │ │ │ │ ├── SkipsExprThenBalancesBracesIfFirstIdentifierIsForKeyword.stree.txt │ │ │ │ ├── SkipsExprThenBalancesBracesIfFirstIdentifierIsForeachKeyword.cspans.txt │ │ │ │ ├── SkipsExprThenBalancesBracesIfFirstIdentifierIsForeachKeyword.stree.txt │ │ │ │ ├── SkipsExprThenBalancesBracesIfFirstIdentifierIsIfKeywordWithNoElseBranches.cspans.txt │ │ │ │ ├── SkipsExprThenBalancesBracesIfFirstIdentifierIsIfKeywordWithNoElseBranches.stree.txt │ │ │ │ ├── SkipsExprThenBalancesBracesIfFirstIdentifierIsSwitchKeyword.cspans.txt │ │ │ │ ├── SkipsExprThenBalancesBracesIfFirstIdentifierIsSwitchKeyword.stree.txt │ │ │ │ ├── SkipsExprThenBalancesBracesIfFirstIdentifierIsWhileKeyword.cspans.txt │ │ │ │ ├── SkipsExprThenBalancesBracesIfFirstIdentifierIsWhileKeyword.stree.txt │ │ │ │ ├── SkipsExprThenBalancesIfFirstIdentifierIsUsingFollowedByParen.cspans.txt │ │ │ │ ├── SkipsExprThenBalancesIfFirstIdentifierIsUsingFollowedByParen.stree.txt │ │ │ │ ├── StopsParsingCatchClausesAfterFinallyBlock.cspans.txt │ │ │ │ ├── StopsParsingCatchClausesAfterFinallyBlock.stree.txt │ │ │ │ ├── StopsParsingCodeAfterElseBranch.cspans.txt │ │ │ │ ├── StopsParsingCodeAfterElseBranch.stree.txt │ │ │ │ ├── StopsParsingIfIfStatementNotFollowedByElse.cspans.txt │ │ │ │ ├── StopsParsingIfIfStatementNotFollowedByElse.stree.txt │ │ │ │ ├── SupportsBlockCommentBetweenCatchAndFinallyClause.cspans.txt │ │ │ │ ├── SupportsBlockCommentBetweenCatchAndFinallyClause.stree.txt │ │ │ │ ├── SupportsBlockCommentBetweenDoAndWhileClause.cspans.txt │ │ │ │ ├── SupportsBlockCommentBetweenDoAndWhileClause.stree.txt │ │ │ │ ├── SupportsBlockCommentBetweenElseIfAndElseClause.cspans.txt │ │ │ │ ├── SupportsBlockCommentBetweenElseIfAndElseClause.stree.txt │ │ │ │ ├── SupportsBlockCommentBetweenIfAndElseClause.cspans.txt │ │ │ │ ├── SupportsBlockCommentBetweenIfAndElseClause.stree.txt │ │ │ │ ├── SupportsBlockCommentBetweenIfAndElseIfClause.cspans.txt │ │ │ │ ├── SupportsBlockCommentBetweenIfAndElseIfClause.stree.txt │ │ │ │ ├── SupportsBlockCommentBetweenTryAndCatchClause.cspans.txt │ │ │ │ ├── SupportsBlockCommentBetweenTryAndCatchClause.stree.txt │ │ │ │ ├── SupportsBlockCommentBetweenTryAndFinallyClause.cspans.txt │ │ │ │ ├── SupportsBlockCommentBetweenTryAndFinallyClause.stree.txt │ │ │ │ ├── SupportsExceptionLessCatchClauses.cspans.txt │ │ │ │ ├── SupportsExceptionLessCatchClauses.stree.txt │ │ │ │ ├── SupportsLineCommentBetweenCatchAndFinallyClause.cspans.txt │ │ │ │ ├── SupportsLineCommentBetweenCatchAndFinallyClause.stree.txt │ │ │ │ ├── SupportsLineCommentBetweenDoAndWhileClause.cspans.txt │ │ │ │ ├── SupportsLineCommentBetweenDoAndWhileClause.stree.txt │ │ │ │ ├── SupportsLineCommentBetweenElseIfAndElseClause.cspans.txt │ │ │ │ ├── SupportsLineCommentBetweenElseIfAndElseClause.stree.txt │ │ │ │ ├── SupportsLineCommentBetweenIfAndElseClause.cspans.txt │ │ │ │ ├── SupportsLineCommentBetweenIfAndElseClause.stree.txt │ │ │ │ ├── SupportsLineCommentBetweenIfAndElseIfClause.cspans.txt │ │ │ │ ├── SupportsLineCommentBetweenIfAndElseIfClause.stree.txt │ │ │ │ ├── SupportsLineCommentBetweenTryAndCatchClause.cspans.txt │ │ │ │ ├── SupportsLineCommentBetweenTryAndCatchClause.stree.txt │ │ │ │ ├── SupportsLineCommentBetweenTryAndFinallyClause.cspans.txt │ │ │ │ ├── SupportsLineCommentBetweenTryAndFinallyClause.stree.txt │ │ │ │ ├── SupportsMarkupWithinAdditionalCatchClauses.cspans.txt │ │ │ │ ├── SupportsMarkupWithinAdditionalCatchClauses.stree.txt │ │ │ │ ├── SupportsMarkupWithinCatchClause.cspans.txt │ │ │ │ ├── SupportsMarkupWithinCatchClause.stree.txt │ │ │ │ ├── SupportsMarkupWithinFinallyClause.cspans.txt │ │ │ │ ├── SupportsMarkupWithinFinallyClause.stree.txt │ │ │ │ ├── SupportsMarkupWithinTryClause.cspans.txt │ │ │ │ ├── SupportsMarkupWithinTryClause.stree.txt │ │ │ │ ├── SupportsRazorCommentBetweenCatchAndFinallyClause.cspans.txt │ │ │ │ ├── SupportsRazorCommentBetweenCatchAndFinallyClause.stree.txt │ │ │ │ ├── SupportsRazorCommentBetweenDoAndWhileClause.cspans.txt │ │ │ │ ├── SupportsRazorCommentBetweenDoAndWhileClause.stree.txt │ │ │ │ ├── SupportsRazorCommentBetweenElseIfAndElseClause.cspans.txt │ │ │ │ ├── SupportsRazorCommentBetweenElseIfAndElseClause.stree.txt │ │ │ │ ├── SupportsRazorCommentBetweenIfAndElseClause.cspans.txt │ │ │ │ ├── SupportsRazorCommentBetweenIfAndElseClause.stree.txt │ │ │ │ ├── SupportsRazorCommentBetweenIfAndElseIfClause.cspans.txt │ │ │ │ ├── SupportsRazorCommentBetweenIfAndElseIfClause.stree.txt │ │ │ │ ├── SupportsRazorCommentBetweenTryAndCatchClause.cspans.txt │ │ │ │ ├── SupportsRazorCommentBetweenTryAndCatchClause.stree.txt │ │ │ │ ├── SupportsRazorCommentBetweenTryAndFinallyClause.cspans.txt │ │ │ │ ├── SupportsRazorCommentBetweenTryAndFinallyClause.stree.txt │ │ │ │ ├── SupportsTryStatementWithFinallyClause.cspans.txt │ │ │ │ ├── SupportsTryStatementWithFinallyClause.stree.txt │ │ │ │ ├── SupportsTryStatementWithMultipleCatchClause.cspans.txt │ │ │ │ ├── SupportsTryStatementWithMultipleCatchClause.stree.txt │ │ │ │ ├── SupportsTryStatementWithNoAdditionalClauses.cspans.txt │ │ │ │ ├── SupportsTryStatementWithNoAdditionalClauses.stree.txt │ │ │ │ ├── SupportsTryStatementWithOneCatchClause.cspans.txt │ │ │ │ ├── SupportsTryStatementWithOneCatchClause.stree.txt │ │ │ │ ├── SupportsUsingsNestedWithinOtherBlocks.cspans.txt │ │ │ │ ├── SupportsUsingsNestedWithinOtherBlocks.stree.txt │ │ │ │ ├── TerminatesBlockCommentAtEndOfFile.cspans.txt │ │ │ │ ├── TerminatesBlockCommentAtEndOfFile.diag.txt │ │ │ │ ├── TerminatesBlockCommentAtEndOfFile.stree.txt │ │ │ │ ├── TerminatesParenBalancingAtEOF.cspans.txt │ │ │ │ ├── TerminatesParenBalancingAtEOF.diag.txt │ │ │ │ ├── TerminatesParenBalancingAtEOF.stree.txt │ │ │ │ ├── TerminatesSingleLineCommentAtEndOfFile.cspans.txt │ │ │ │ ├── TerminatesSingleLineCommentAtEndOfFile.diag.txt │ │ │ │ ├── TerminatesSingleLineCommentAtEndOfFile.stree.txt │ │ │ │ ├── TerminatesSingleSlashAtEndOfFile.cspans.txt │ │ │ │ ├── TerminatesSingleSlashAtEndOfFile.diag.txt │ │ │ │ ├── TerminatesSingleSlashAtEndOfFile.stree.txt │ │ │ │ ├── TerminatesUsingKeywordAtEOFAndOutputsFileCodeBlock.cspans.txt │ │ │ │ ├── TerminatesUsingKeywordAtEOFAndOutputsFileCodeBlock.stree.txt │ │ │ │ ├── ThenBalancesBracesIfFirstIdentifierIsLockKeyword.cspans.txt │ │ │ │ ├── ThenBalancesBracesIfFirstIdentifierIsLockKeyword.stree.txt │ │ │ │ ├── TreatsAtSignsAfterFirstPairAsPartOfCSharpStatement.cspans.txt │ │ │ │ ├── TreatsAtSignsAfterFirstPairAsPartOfCSharpStatement.stree.txt │ │ │ │ ├── TreatsDoubleAtSignAsEscapeSequenceIfAtStatementStart.cspans.txt │ │ │ │ ├── TreatsDoubleAtSignAsEscapeSequenceIfAtStatementStart.stree.txt │ │ │ │ ├── WithDoubleTransitionAtBeginningOfAttributeValue_DoesNotThrow.cspans.txt │ │ │ │ ├── WithDoubleTransitionAtBeginningOfAttributeValue_DoesNotThrow.stree.txt │ │ │ │ ├── WithDoubleTransitionAtEndOfAttributeValue_DoesNotThrow.cspans.txt │ │ │ │ ├── WithDoubleTransitionAtEndOfAttributeValue_DoesNotThrow.stree.txt │ │ │ │ ├── WithDoubleTransitionBetweenAttributeValue_DoesNotThrow.cspans.txt │ │ │ │ ├── WithDoubleTransitionBetweenAttributeValue_DoesNotThrow.stree.txt │ │ │ │ ├── WithDoubleTransitionInAttributeValue_DoesNotThrow.cspans.txt │ │ │ │ ├── WithDoubleTransitionInAttributeValue_DoesNotThrow.stree.txt │ │ │ │ ├── WithDoubleTransitionInEmail_DoesNotThrow.cspans.txt │ │ │ │ ├── WithDoubleTransitionInEmail_DoesNotThrow.stree.txt │ │ │ │ ├── WithDoubleTransitionInRegex_DoesNotThrow.cspans.txt │ │ │ │ ├── WithDoubleTransitionInRegex_DoesNotThrow.stree.txt │ │ │ │ ├── WithDoubleTransitionWithExpressionBlock_DoesNotThrow.cspans.txt │ │ │ │ ├── WithDoubleTransitionWithExpressionBlock_DoesNotThrow.stree.txt │ │ │ │ ├── WithDoubleTransition_EndOfFile_Throws.cspans.txt │ │ │ │ ├── WithDoubleTransition_EndOfFile_Throws.diag.txt │ │ │ │ ├── WithDoubleTransition_EndOfFile_Throws.stree.txt │ │ │ │ ├── WithUnexpectedTransitionsInAttributeValue_Throws.cspans.txt │ │ │ │ ├── WithUnexpectedTransitionsInAttributeValue_Throws.diag.txt │ │ │ │ └── WithUnexpectedTransitionsInAttributeValue_Throws.stree.txt │ │ │ ├── CSharpErrorTest │ │ │ │ ├── CapturesWhitespaceToEOLInInvalidUsingStmtAndTreatsAsFileCode.cspans.txt │ │ │ │ ├── CapturesWhitespaceToEOLInInvalidUsingStmtAndTreatsAsFileCode.stree.txt │ │ │ │ ├── CorrectlyHandlesInCorrectTransitionsIfImplicitExpressionParensUnclosed.cspans.txt │ │ │ │ ├── CorrectlyHandlesInCorrectTransitionsIfImplicitExpressionParensUnclosed.diag.txt │ │ │ │ ├── CorrectlyHandlesInCorrectTransitionsIfImplicitExpressionParensUnclosed.stree.txt │ │ │ │ ├── CorrectlyParsesAtSignInDelimitedBlock.cspans.txt │ │ │ │ ├── CorrectlyParsesAtSignInDelimitedBlock.stree.txt │ │ │ │ ├── CorrectlyParsesMarkupIncorrectyAssumedToBeWithinAStatement.cspans.txt │ │ │ │ ├── CorrectlyParsesMarkupIncorrectyAssumedToBeWithinAStatement.diag.txt │ │ │ │ ├── CorrectlyParsesMarkupIncorrectyAssumedToBeWithinAStatement.stree.txt │ │ │ │ ├── CorrectlyRecoversFromMissingCloseParenInExpressionWithinCode.cspans.txt │ │ │ │ ├── CorrectlyRecoversFromMissingCloseParenInExpressionWithinCode.diag.txt │ │ │ │ ├── CorrectlyRecoversFromMissingCloseParenInExpressionWithinCode.stree.txt │ │ │ │ ├── HandlesQuotesAfterTransition.cspans.txt │ │ │ │ ├── HandlesQuotesAfterTransition.diag.txt │ │ │ │ ├── HandlesQuotesAfterTransition.stree.txt │ │ │ │ ├── IncludesUnexpectedCharacterInSingleStatementControlFlowStatementError.cspans.txt │ │ │ │ ├── IncludesUnexpectedCharacterInSingleStatementControlFlowStatementError.diag.txt │ │ │ │ ├── IncludesUnexpectedCharacterInSingleStatementControlFlowStatementError.stree.txt │ │ │ │ ├── MethodOutputsOpenCurlyAsCodeSpanIfEofFoundAfterOpenCurlyBrace.cspans.txt │ │ │ │ ├── MethodOutputsOpenCurlyAsCodeSpanIfEofFoundAfterOpenCurlyBrace.diag.txt │ │ │ │ ├── MethodOutputsOpenCurlyAsCodeSpanIfEofFoundAfterOpenCurlyBrace.stree.txt │ │ │ │ ├── MethodOutputsZeroLengthCodeSpanIfStatementBlockEmpty.cspans.txt │ │ │ │ ├── MethodOutputsZeroLengthCodeSpanIfStatementBlockEmpty.stree.txt │ │ │ │ ├── MethodParsesNothingIfFirstCharacterIsNotIdentifierStartOrParenOrBrace.cspans.txt │ │ │ │ ├── MethodParsesNothingIfFirstCharacterIsNotIdentifierStartOrParenOrBrace.diag.txt │ │ │ │ ├── MethodParsesNothingIfFirstCharacterIsNotIdentifierStartOrParenOrBrace.stree.txt │ │ │ │ ├── MethodProducesErrorIfEOFAfterTransitionInEmbeddedExpression.cspans.txt │ │ │ │ ├── MethodProducesErrorIfEOFAfterTransitionInEmbeddedExpression.diag.txt │ │ │ │ ├── MethodProducesErrorIfEOFAfterTransitionInEmbeddedExpression.stree.txt │ │ │ │ ├── MethodProducesErrorIfNewlineFollowsTransition.cspans.txt │ │ │ │ ├── MethodProducesErrorIfNewlineFollowsTransition.diag.txt │ │ │ │ ├── MethodProducesErrorIfNewlineFollowsTransition.stree.txt │ │ │ │ ├── MethodProducesErrorIfWhitespaceBetweenTransitionAndBlockStartInEmbeddedExpr.cspans.txt │ │ │ │ ├── MethodProducesErrorIfWhitespaceBetweenTransitionAndBlockStartInEmbeddedExpr.diag.txt │ │ │ │ ├── MethodProducesErrorIfWhitespaceBetweenTransitionAndBlockStartInEmbeddedExpr.stree.txt │ │ │ │ ├── OutputsErrorIfAtSignFollowedByLessThanSignAtStatementStart.cspans.txt │ │ │ │ ├── OutputsErrorIfAtSignFollowedByLessThanSignAtStatementStart.diag.txt │ │ │ │ ├── OutputsErrorIfAtSignFollowedByLessThanSignAtStatementStart.stree.txt │ │ │ │ ├── ReportsErrorIfCatchBlockUnterminatedAtEOF.cspans.txt │ │ │ │ ├── ReportsErrorIfCatchBlockUnterminatedAtEOF.diag.txt │ │ │ │ ├── ReportsErrorIfCatchBlockUnterminatedAtEOF.stree.txt │ │ │ │ ├── ReportsErrorIfClassBlockUnterminatedAtEOF.cspans.txt │ │ │ │ ├── ReportsErrorIfClassBlockUnterminatedAtEOF.stree.txt │ │ │ │ ├── ReportsErrorIfDoBlockUnterminatedAtEOF.cspans.txt │ │ │ │ ├── ReportsErrorIfDoBlockUnterminatedAtEOF.diag.txt │ │ │ │ ├── ReportsErrorIfDoBlockUnterminatedAtEOF.stree.txt │ │ │ │ ├── ReportsErrorIfElseBlockUnterminatedAtEOF.cspans.txt │ │ │ │ ├── ReportsErrorIfElseBlockUnterminatedAtEOF.diag.txt │ │ │ │ ├── ReportsErrorIfElseBlockUnterminatedAtEOF.stree.txt │ │ │ │ ├── ReportsErrorIfElseIfBlockUnterminatedAtEOF.cspans.txt │ │ │ │ ├── ReportsErrorIfElseIfBlockUnterminatedAtEOF.diag.txt │ │ │ │ ├── ReportsErrorIfElseIfBlockUnterminatedAtEOF.stree.txt │ │ │ │ ├── ReportsErrorIfExplicitCodeBlockUnterminatedAtEOF.cspans.txt │ │ │ │ ├── ReportsErrorIfExplicitCodeBlockUnterminatedAtEOF.diag.txt │ │ │ │ ├── ReportsErrorIfExplicitCodeBlockUnterminatedAtEOF.stree.txt │ │ │ │ ├── ReportsErrorIfFinallyBlockUnterminatedAtEOF.cspans.txt │ │ │ │ ├── ReportsErrorIfFinallyBlockUnterminatedAtEOF.diag.txt │ │ │ │ ├── ReportsErrorIfFinallyBlockUnterminatedAtEOF.stree.txt │ │ │ │ ├── ReportsErrorIfForBlockUnterminatedAtEOF.cspans.txt │ │ │ │ ├── ReportsErrorIfForBlockUnterminatedAtEOF.diag.txt │ │ │ │ ├── ReportsErrorIfForBlockUnterminatedAtEOF.stree.txt │ │ │ │ ├── ReportsErrorIfForeachBlockUnterminatedAtEOF.cspans.txt │ │ │ │ ├── ReportsErrorIfForeachBlockUnterminatedAtEOF.diag.txt │ │ │ │ ├── ReportsErrorIfForeachBlockUnterminatedAtEOF.stree.txt │ │ │ │ ├── ReportsErrorIfIfBlockUnterminatedAtEOF.cspans.txt │ │ │ │ ├── ReportsErrorIfIfBlockUnterminatedAtEOF.diag.txt │ │ │ │ ├── ReportsErrorIfIfBlockUnterminatedAtEOF.stree.txt │ │ │ │ ├── ReportsErrorIfLockBlockUnterminatedAtEOF.cspans.txt │ │ │ │ ├── ReportsErrorIfLockBlockUnterminatedAtEOF.diag.txt │ │ │ │ ├── ReportsErrorIfLockBlockUnterminatedAtEOF.stree.txt │ │ │ │ ├── ReportsErrorIfSwitchBlockUnterminatedAtEOF.cspans.txt │ │ │ │ ├── ReportsErrorIfSwitchBlockUnterminatedAtEOF.diag.txt │ │ │ │ ├── ReportsErrorIfSwitchBlockUnterminatedAtEOF.stree.txt │ │ │ │ ├── ReportsErrorIfTryBlockUnterminatedAtEOF.cspans.txt │ │ │ │ ├── ReportsErrorIfTryBlockUnterminatedAtEOF.diag.txt │ │ │ │ ├── ReportsErrorIfTryBlockUnterminatedAtEOF.stree.txt │ │ │ │ ├── ReportsErrorIfUsingBlockUnterminatedAtEOF.cspans.txt │ │ │ │ ├── ReportsErrorIfUsingBlockUnterminatedAtEOF.diag.txt │ │ │ │ ├── ReportsErrorIfUsingBlockUnterminatedAtEOF.stree.txt │ │ │ │ ├── ReportsErrorIfWhileBlockUnterminatedAtEOF.cspans.txt │ │ │ │ ├── ReportsErrorIfWhileBlockUnterminatedAtEOF.diag.txt │ │ │ │ ├── ReportsErrorIfWhileBlockUnterminatedAtEOF.stree.txt │ │ │ │ ├── RequiresControlFlowStatementsToHaveBraces.cspans.txt │ │ │ │ ├── RequiresControlFlowStatementsToHaveBraces.diag.txt │ │ │ │ ├── RequiresControlFlowStatementsToHaveBraces.stree.txt │ │ │ │ ├── ResumesIfStatementAfterOpenParen.cspans.txt │ │ │ │ ├── ResumesIfStatementAfterOpenParen.diag.txt │ │ │ │ ├── ResumesIfStatementAfterOpenParen.stree.txt │ │ │ │ ├── ShouldReportErrorAndTerminateAtEOFIfBracketInImplicitExpressionUnclosed.cspans.txt │ │ │ │ ├── ShouldReportErrorAndTerminateAtEOFIfBracketInImplicitExpressionUnclosed.diag.txt │ │ │ │ ├── ShouldReportErrorAndTerminateAtEOFIfBracketInImplicitExpressionUnclosed.stree.txt │ │ │ │ ├── ShouldReportErrorAndTerminateAtEOFIfIfParenInExplicitExprUnclosed.cspans.txt │ │ │ │ ├── ShouldReportErrorAndTerminateAtEOFIfIfParenInExplicitExprUnclosed.diag.txt │ │ │ │ ├── ShouldReportErrorAndTerminateAtEOFIfIfParenInExplicitExprUnclosed.stree.txt │ │ │ │ ├── ShouldReportErrorAndTerminateAtEOFIfParenInImplicitExprUnclosed.cspans.txt │ │ │ │ ├── ShouldReportErrorAndTerminateAtEOFIfParenInImplicitExprUnclosed.diag.txt │ │ │ │ ├── ShouldReportErrorAndTerminateAtEOFIfParenInImplicitExprUnclosed.stree.txt │ │ │ │ ├── ShouldReportErrorAndTerminateAtMarkupIfBracketInImplicitExprUnclosed.cspans.txt │ │ │ │ ├── ShouldReportErrorAndTerminateAtMarkupIfBracketInImplicitExprUnclosed.diag.txt │ │ │ │ ├── ShouldReportErrorAndTerminateAtMarkupIfBracketInImplicitExprUnclosed.stree.txt │ │ │ │ ├── ShouldReportErrorAndTerminateAtMarkupIfIfParenInExplicitExprUnclosed.cspans.txt │ │ │ │ ├── ShouldReportErrorAndTerminateAtMarkupIfIfParenInExplicitExprUnclosed.diag.txt │ │ │ │ ├── ShouldReportErrorAndTerminateAtMarkupIfIfParenInExplicitExprUnclosed.stree.txt │ │ │ │ ├── ShouldReportErrorAndTerminateAtMarkupIfParenInImplicitExpressionUnclosed.cspans.txt │ │ │ │ ├── ShouldReportErrorAndTerminateAtMarkupIfParenInImplicitExpressionUnclosed.diag.txt │ │ │ │ ├── ShouldReportErrorAndTerminateAtMarkupIfParenInImplicitExpressionUnclosed.stree.txt │ │ │ │ ├── TerminatesForeachBlockAtEOLWhenRecoveringFromMissingCloseParen.cspans.txt │ │ │ │ ├── TerminatesForeachBlockAtEOLWhenRecoveringFromMissingCloseParen.diag.txt │ │ │ │ ├── TerminatesForeachBlockAtEOLWhenRecoveringFromMissingCloseParen.stree.txt │ │ │ │ ├── TerminatesIfBlockAtEOLWhenRecoveringFromMissingCloseParen.cspans.txt │ │ │ │ ├── TerminatesIfBlockAtEOLWhenRecoveringFromMissingCloseParen.diag.txt │ │ │ │ ├── TerminatesIfBlockAtEOLWhenRecoveringFromMissingCloseParen.stree.txt │ │ │ │ ├── TerminatesNormalCSharpStringsAtEOLIfEndQuoteMissing.cspans.txt │ │ │ │ ├── TerminatesNormalCSharpStringsAtEOLIfEndQuoteMissing.diag.txt │ │ │ │ ├── TerminatesNormalCSharpStringsAtEOLIfEndQuoteMissing.stree.txt │ │ │ │ ├── TerminatesNormalStringAtEndOfFile.cspans.txt │ │ │ │ ├── TerminatesNormalStringAtEndOfFile.diag.txt │ │ │ │ ├── TerminatesNormalStringAtEndOfFile.stree.txt │ │ │ │ ├── TerminatesUsingBlockAtEOLWhenRecoveringFromMissingCloseParen.cspans.txt │ │ │ │ ├── TerminatesUsingBlockAtEOLWhenRecoveringFromMissingCloseParen.diag.txt │ │ │ │ ├── TerminatesUsingBlockAtEOLWhenRecoveringFromMissingCloseParen.stree.txt │ │ │ │ ├── TerminatesVerbatimStringAtEndOfFile.cspans.txt │ │ │ │ ├── TerminatesVerbatimStringAtEndOfFile.diag.txt │ │ │ │ ├── TerminatesVerbatimStringAtEndOfFile.stree.txt │ │ │ │ ├── TerminatesWhileClauseInDoStmtAtEOLWhenRecoveringFromMissingCloseParen.cspans.txt │ │ │ │ ├── TerminatesWhileClauseInDoStmtAtEOLWhenRecoveringFromMissingCloseParen.diag.txt │ │ │ │ ├── TerminatesWhileClauseInDoStmtAtEOLWhenRecoveringFromMissingCloseParen.stree.txt │ │ │ │ ├── WithHelperDirectiveProducesError.cspans.txt │ │ │ │ ├── WithHelperDirectiveProducesError.diag.txt │ │ │ │ ├── WithHelperDirectiveProducesError.stree.txt │ │ │ │ ├── WithNestedCodeBlockProducesError.cspans.txt │ │ │ │ ├── WithNestedCodeBlockProducesError.diag.txt │ │ │ │ └── WithNestedCodeBlockProducesError.stree.txt │ │ │ ├── CSharpExplicitExpressionTest │ │ │ │ ├── ShouldAcceptConsecutiveEscapedQuotesInNonVerbatimStrings.cspans.txt │ │ │ │ ├── ShouldAcceptConsecutiveEscapedQuotesInNonVerbatimStrings.stree.txt │ │ │ │ ├── ShouldAcceptConsecutiveEscapedQuotesInVerbatimStrings.cspans.txt │ │ │ │ ├── ShouldAcceptConsecutiveEscapedQuotesInVerbatimStrings.stree.txt │ │ │ │ ├── ShouldAcceptEscapedQuoteInNonVerbatimStrings.cspans.txt │ │ │ │ ├── ShouldAcceptEscapedQuoteInNonVerbatimStrings.stree.txt │ │ │ │ ├── ShouldAcceptEscapedQuoteInVerbatimStrings.cspans.txt │ │ │ │ ├── ShouldAcceptEscapedQuoteInVerbatimStrings.stree.txt │ │ │ │ ├── ShouldAcceptMultiLineVerbatimStrings.cspans.txt │ │ │ │ ├── ShouldAcceptMultiLineVerbatimStrings.stree.txt │ │ │ │ ├── ShouldAcceptMultipleEscapedQuotesInNonVerbatimStrings.cspans.txt │ │ │ │ ├── ShouldAcceptMultipleEscapedQuotesInNonVerbatimStrings.stree.txt │ │ │ │ ├── ShouldAcceptMultipleEscapedQuotesInVerbatimStrings.cspans.txt │ │ │ │ ├── ShouldAcceptMultipleEscapedQuotesInVerbatimStrings.stree.txt │ │ │ │ ├── ShouldAcceptMultipleRepeatedEscapedQuoteInVerbatimStrings.cspans.txt │ │ │ │ ├── ShouldAcceptMultipleRepeatedEscapedQuoteInVerbatimStrings.stree.txt │ │ │ │ ├── ShouldOutputZeroLengthCodeSpanIfEOFOccursAfterStartOfExplicitExpr.cspans.txt │ │ │ │ ├── ShouldOutputZeroLengthCodeSpanIfEOFOccursAfterStartOfExplicitExpr.diag.txt │ │ │ │ ├── ShouldOutputZeroLengthCodeSpanIfEOFOccursAfterStartOfExplicitExpr.stree.txt │ │ │ │ ├── ShouldOutputZeroLengthCodeSpanIfExplicitExpressionIsEmpty.cspans.txt │ │ │ │ └── ShouldOutputZeroLengthCodeSpanIfExplicitExpressionIsEmpty.stree.txt │ │ │ ├── CSharpImplicitExpressionTest │ │ │ │ ├── AcceptsNonEnglishCharactersThatAreValidIdentifiers.cspans.txt │ │ │ │ ├── AcceptsNonEnglishCharactersThatAreValidIdentifiers.stree.txt │ │ │ │ ├── DoesNotAcceptSemicolonIfExpressionTerminatedByWhitespace.cspans.txt │ │ │ │ ├── DoesNotAcceptSemicolonIfExpressionTerminatedByWhitespace.stree.txt │ │ │ │ ├── DoesNotIncludeDotAtEOFInImplicitExpression.cspans.txt │ │ │ │ ├── DoesNotIncludeDotAtEOFInImplicitExpression.stree.txt │ │ │ │ ├── DoesNotIncludeDotFollowedByInvalidIdentifierCharInImplicitExpr1.cspans.txt │ │ │ │ ├── DoesNotIncludeDotFollowedByInvalidIdentifierCharInImplicitExpr1.stree.txt │ │ │ │ ├── DoesNotIncludeDotFollowedByInvalidIdentifierCharInImplicitExpr2.cspans.txt │ │ │ │ ├── DoesNotIncludeDotFollowedByInvalidIdentifierCharInImplicitExpr2.stree.txt │ │ │ │ ├── DoesNotIncludeSemicolonAfterDot.cspans.txt │ │ │ │ ├── DoesNotIncludeSemicolonAfterDot.stree.txt │ │ │ │ ├── IgnoresSemicolonAtEndOfDottedIdentifiers.cspans.txt │ │ │ │ ├── IgnoresSemicolonAtEndOfDottedIdentifiers.stree.txt │ │ │ │ ├── IgnoresSemicolonAtEndOfSimpleImplicitExpression.cspans.txt │ │ │ │ ├── IgnoresSemicolonAtEndOfSimpleImplicitExpression.stree.txt │ │ │ │ ├── NestedImplicitExpression.cspans.txt │ │ │ │ ├── NestedImplicitExpression.stree.txt │ │ │ │ ├── OutputExpressionIfModuleTokenNotFollowedByBrace.cspans.txt │ │ │ │ ├── OutputExpressionIfModuleTokenNotFollowedByBrace.stree.txt │ │ │ │ ├── OutputsZeroLengthCodeSpanIfEOFOccursAfterTransition.cspans.txt │ │ │ │ ├── OutputsZeroLengthCodeSpanIfEOFOccursAfterTransition.diag.txt │ │ │ │ ├── OutputsZeroLengthCodeSpanIfEOFOccursAfterTransition.stree.txt │ │ │ │ ├── OutputsZeroLengthCodeSpanIfInvalidCharacterFollowsTransition.cspans.txt │ │ │ │ ├── OutputsZeroLengthCodeSpanIfInvalidCharacterFollowsTransition.diag.txt │ │ │ │ ├── OutputsZeroLengthCodeSpanIfInvalidCharacterFollowsTransition.stree.txt │ │ │ │ ├── ParsesDottedIdentifiersAsImplicitExpression.cspans.txt │ │ │ │ ├── ParsesDottedIdentifiersAsImplicitExpression.stree.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket1.cspans.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket1.stree.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket10.cspans.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket10.stree.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket11.cspans.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket11.diag.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket11.stree.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket12.cspans.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket12.stree.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket13.cspans.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket13.stree.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket14.cspans.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket14.stree.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket15.cspans.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket15.stree.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket16.cspans.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket16.stree.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket2.cspans.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket2.stree.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket3.cspans.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket3.diag.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket3.stree.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket4.cspans.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket4.stree.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket5.cspans.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket5.diag.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket5.stree.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket6.cspans.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket6.stree.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket7.cspans.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket7.diag.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket7.stree.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket8.cspans.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket8.diag.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket8.stree.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket9.cspans.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Bracket9.stree.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot1.cspans.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot1.stree.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot10.cspans.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot10.stree.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot11.cspans.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot11.stree.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot12.cspans.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot12.stree.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot13.cspans.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot13.stree.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot14.cspans.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot14.stree.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot2.cspans.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot2.stree.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot3.cspans.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot3.stree.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot4.cspans.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot4.stree.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot5.cspans.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot5.stree.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot6.cspans.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot6.stree.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot7.cspans.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot7.stree.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot8.cspans.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot8.stree.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot9.cspans.txt │ │ │ │ ├── ParsesNullConditionalOperatorImplicitExpression_Dot9.stree.txt │ │ │ │ ├── ParsesSingleIdentifierAsImplicitExpression.cspans.txt │ │ │ │ ├── ParsesSingleIdentifierAsImplicitExpression.stree.txt │ │ │ │ ├── ProperlyParsesBracketsAndBalancesThemInImplicitExpression.cspans.txt │ │ │ │ ├── ProperlyParsesBracketsAndBalancesThemInImplicitExpression.stree.txt │ │ │ │ ├── ProperlyParsesParenthesesAndBalancesThemInImplicitExpression.cspans.txt │ │ │ │ ├── ProperlyParsesParenthesesAndBalancesThemInImplicitExpression.stree.txt │ │ │ │ ├── StopsBalancingParenthesesAtEOF.cspans.txt │ │ │ │ ├── StopsBalancingParenthesesAtEOF.diag.txt │ │ │ │ ├── StopsBalancingParenthesesAtEOF.stree.txt │ │ │ │ ├── SupportsSlashesWithinComplexImplicitExpressions.cspans.txt │ │ │ │ ├── SupportsSlashesWithinComplexImplicitExpressions.stree.txt │ │ │ │ ├── TerminatesAfterIdentifierUnlessFollowedByDotOrParenInImplicitExpr.cspans.txt │ │ │ │ ├── TerminatesAfterIdentifierUnlessFollowedByDotOrParenInImplicitExpr.stree.txt │ │ │ │ ├── TerminatesImplicitExprBeforeDotIfDotNotFollowedByIdentifierStartChar.cspans.txt │ │ │ │ ├── TerminatesImplicitExprBeforeDotIfDotNotFollowedByIdentifierStartChar.stree.txt │ │ │ │ ├── TerminatesImplicitExpressionAtHtmlEndTag.cspans.txt │ │ │ │ ├── TerminatesImplicitExpressionAtHtmlEndTag.stree.txt │ │ │ │ ├── TerminatesImplicitExpressionAtHtmlStartTag.cspans.txt │ │ │ │ ├── TerminatesImplicitExpressionAtHtmlStartTag.stree.txt │ │ │ │ ├── TerminatesImplicitExpressionAtLastValidPointIfDotFollowedByWhitespace.cspans.txt │ │ │ │ ├── TerminatesImplicitExpressionAtLastValidPointIfDotFollowedByWhitespace.stree.txt │ │ │ │ ├── TerminatesImplicitExpressionIfCloseParenFollowedByAnyWhiteSpace.cspans.txt │ │ │ │ ├── TerminatesImplicitExpressionIfCloseParenFollowedByAnyWhiteSpace.stree.txt │ │ │ │ ├── TerminatesImplicitExpressionIfIdentifierFollowedByAnyWhiteSpace.cspans.txt │ │ │ │ └── TerminatesImplicitExpressionIfIdentifierFollowedByAnyWhiteSpace.stree.txt │ │ │ ├── CSharpNestedStatementsTest │ │ │ │ ├── NestedCodeBlock.cspans.txt │ │ │ │ ├── NestedCodeBlock.stree.txt │ │ │ │ ├── NestedExplicitExpression.cspans.txt │ │ │ │ ├── NestedExplicitExpression.stree.txt │ │ │ │ ├── NestedImplicitExpression.cspans.txt │ │ │ │ ├── NestedImplicitExpression.stree.txt │ │ │ │ ├── NestedKeywordStatement.cspans.txt │ │ │ │ ├── NestedKeywordStatement.stree.txt │ │ │ │ ├── NestedMarkupBlock.cspans.txt │ │ │ │ ├── NestedMarkupBlock.stree.txt │ │ │ │ ├── NestedSimpleStatement.cspans.txt │ │ │ │ └── NestedSimpleStatement.stree.txt │ │ │ ├── CSharpRazorCommentsTest │ │ │ │ ├── EmptyRazorComment.cspans.txt │ │ │ │ ├── EmptyRazorComment.stree.txt │ │ │ │ ├── MultipleRazorCommentInMarkup.cspans.txt │ │ │ │ ├── MultipleRazorCommentInMarkup.stree.txt │ │ │ │ ├── MultipleRazorCommentsInSameLineInMarkup.cspans.txt │ │ │ │ ├── MultipleRazorCommentsInSameLineInMarkup.stree.txt │ │ │ │ ├── RazorCommentInClosingTagBlock.cspans.txt │ │ │ │ ├── RazorCommentInClosingTagBlock.stree.txt │ │ │ │ ├── RazorCommentInImplicitExpressionMethodCall.cspans.txt │ │ │ │ ├── RazorCommentInImplicitExpressionMethodCall.diag.txt │ │ │ │ ├── RazorCommentInImplicitExpressionMethodCall.stree.txt │ │ │ │ ├── RazorCommentInMarkup.cspans.txt │ │ │ │ ├── RazorCommentInMarkup.stree.txt │ │ │ │ ├── RazorCommentInOpeningTagBlock.cspans.txt │ │ │ │ ├── RazorCommentInOpeningTagBlock.stree.txt │ │ │ │ ├── RazorCommentInVerbatimBlock.cspans.txt │ │ │ │ ├── RazorCommentInVerbatimBlock.diag.txt │ │ │ │ ├── RazorCommentInVerbatimBlock.stree.txt │ │ │ │ ├── RazorCommentWithExtraNewLineInMarkup.cspans.txt │ │ │ │ ├── RazorCommentWithExtraNewLineInMarkup.stree.txt │ │ │ │ ├── RazorCommentsSurroundingMarkup.cspans.txt │ │ │ │ ├── RazorCommentsSurroundingMarkup.stree.txt │ │ │ │ ├── RazorMultilineCommentInBlock.cspans.txt │ │ │ │ ├── RazorMultilineCommentInBlock.stree.txt │ │ │ │ ├── UnterminatedRazorComment.cspans.txt │ │ │ │ ├── UnterminatedRazorComment.diag.txt │ │ │ │ ├── UnterminatedRazorComment.stree.txt │ │ │ │ ├── UnterminatedRazorCommentInImplicitExpressionMethodCall.cspans.txt │ │ │ │ ├── UnterminatedRazorCommentInImplicitExpressionMethodCall.diag.txt │ │ │ │ ├── UnterminatedRazorCommentInImplicitExpressionMethodCall.stree.txt │ │ │ │ ├── UnterminatedRazorCommentInVerbatimBlock.cspans.txt │ │ │ │ ├── UnterminatedRazorCommentInVerbatimBlock.diag.txt │ │ │ │ └── UnterminatedRazorCommentInVerbatimBlock.stree.txt │ │ │ ├── CSharpReservedWordsTest │ │ │ │ ├── ReservedWord.cspans.txt │ │ │ │ ├── ReservedWord.diag.txt │ │ │ │ ├── ReservedWord.stree.txt │ │ │ │ ├── ReservedWordIsCaseSensitive.cspans.txt │ │ │ │ └── ReservedWordIsCaseSensitive.stree.txt │ │ │ ├── CSharpSectionTest │ │ │ │ ├── AcceptsOpenBraceMultipleLinesBelowSectionName.cspans.txt │ │ │ │ ├── AcceptsOpenBraceMultipleLinesBelowSectionName.stree.txt │ │ │ │ ├── AllowsBracesInCSharpExpression.cspans.txt │ │ │ │ ├── AllowsBracesInCSharpExpression.stree.txt │ │ │ │ ├── BalancesBraces.cspans.txt │ │ │ │ ├── BalancesBraces.stree.txt │ │ │ │ ├── CapturesNewlineImmediatelyFollowing.cspans.txt │ │ │ │ ├── CapturesNewlineImmediatelyFollowing.stree.txt │ │ │ │ ├── CapturesWhitespaceToEndOfLineInSectionStatementMissingName.cspans.txt │ │ │ │ ├── CapturesWhitespaceToEndOfLineInSectionStatementMissingName.stree.txt │ │ │ │ ├── CapturesWhitespaceToEndOfLineInSectionStatementMissingOpenBrace.cspans.txt │ │ │ │ ├── CapturesWhitespaceToEndOfLineInSectionStatementMissingOpenBrace.stree.txt │ │ │ │ ├── CommentRecoversFromUnclosedTag.cspans.txt │ │ │ │ ├── CommentRecoversFromUnclosedTag.stree.txt │ │ │ │ ├── CorrectlyTerminatesWhenCloseBraceImmediatelyFollowsMarkup.cspans.txt │ │ │ │ ├── CorrectlyTerminatesWhenCloseBraceImmediatelyFollowsMarkup.stree.txt │ │ │ │ ├── DoesNotRequireSpaceBetweenSectionNameAndOpenBrace.cspans.txt │ │ │ │ ├── DoesNotRequireSpaceBetweenSectionNameAndOpenBrace.stree.txt │ │ │ │ ├── HandlesEOFAfterOpenBrace.cspans.txt │ │ │ │ ├── HandlesEOFAfterOpenBrace.stree.txt │ │ │ │ ├── HandlesEOFAfterOpenContent1.cspans.txt │ │ │ │ ├── HandlesEOFAfterOpenContent1.stree.txt │ │ │ │ ├── HandlesEOFAfterOpenContent2.cspans.txt │ │ │ │ ├── HandlesEOFAfterOpenContent2.stree.txt │ │ │ │ ├── HandlesEOFAfterOpenContent3.cspans.txt │ │ │ │ ├── HandlesEOFAfterOpenContent3.stree.txt │ │ │ │ ├── HandlesEOFAfterOpenContent4.cspans.txt │ │ │ │ ├── HandlesEOFAfterOpenContent4.stree.txt │ │ │ │ ├── HandlesUnterminatedSection.cspans.txt │ │ │ │ ├── HandlesUnterminatedSection.stree.txt │ │ │ │ ├── HandlesUnterminatedSectionWithNestedIf.cspans.txt │ │ │ │ ├── HandlesUnterminatedSectionWithNestedIf.stree.txt │ │ │ │ ├── IgnoresSectionUnlessAllLowerCase.cspans.txt │ │ │ │ ├── IgnoresSectionUnlessAllLowerCase.stree.txt │ │ │ │ ├── ParserOutputsErrorOnNestedSections.cspans.txt │ │ │ │ ├── ParserOutputsErrorOnNestedSections.stree.txt │ │ │ │ ├── ParsesComment.cspans.txt │ │ │ │ ├── ParsesComment.stree.txt │ │ │ │ ├── ParsesCommentWithDelimiters.cspans.txt │ │ │ │ ├── ParsesCommentWithDelimiters.stree.txt │ │ │ │ ├── ParsesNamedSectionCorrectly.cspans.txt │ │ │ │ ├── ParsesNamedSectionCorrectly.stree.txt │ │ │ │ ├── ParsesXmlProcessingInstruction.cspans.txt │ │ │ │ ├── ParsesXmlProcessingInstruction.stree.txt │ │ │ │ ├── ReportsErrorAndAcceptsWhitespaceToEOLIfSectionNotFollowedByOpenBrace.cspans.txt │ │ │ │ ├── ReportsErrorAndAcceptsWhitespaceToEOLIfSectionNotFollowedByOpenBrace.stree.txt │ │ │ │ ├── ReportsErrorAndTerminatesSectionBlockIfKeywordNotFollowedByIdentifierStartChar.cspans.txt │ │ │ │ ├── ReportsErrorAndTerminatesSectionBlockIfKeywordNotFollowedByIdentifierStartChar.stree.txt │ │ │ │ ├── ReportsErrorAndTerminatesSectionBlockIfNameNotFollowedByOpenBrace.cspans.txt │ │ │ │ ├── ReportsErrorAndTerminatesSectionBlockIfNameNotFollowedByOpenBrace.stree.txt │ │ │ │ ├── SectionCorrectlyTerminatedWhenCloseBraceFollowsCodeBlockNoWhitespace.cspans.txt │ │ │ │ ├── SectionCorrectlyTerminatedWhenCloseBraceFollowsCodeBlockNoWhitespace.stree.txt │ │ │ │ ├── SectionIsCorrectlyTerminatedWhenCloseBraceImmediatelyFollowsCodeBlock.cspans.txt │ │ │ │ ├── SectionIsCorrectlyTerminatedWhenCloseBraceImmediatelyFollowsCodeBlock.stree.txt │ │ │ │ ├── _WithDoubleTransition1.cspans.txt │ │ │ │ ├── _WithDoubleTransition1.stree.txt │ │ │ │ ├── _WithDoubleTransition2.cspans.txt │ │ │ │ └── _WithDoubleTransition2.stree.txt │ │ │ ├── CSharpSpecialBlockTest │ │ │ │ ├── BalancesBracesOutsideStringsIfFirstCharIsBraceAndReturnsSpanOfTypeCode.cspans.txt │ │ │ │ ├── BalancesBracesOutsideStringsIfFirstCharIsBraceAndReturnsSpanOfTypeCode.stree.txt │ │ │ │ ├── BalancesParensOutsideStringsIfFirstCharIsParenAndReturnsSpanOfTypeExpr.cspans.txt │ │ │ │ ├── BalancesParensOutsideStringsIfFirstCharIsParenAndReturnsSpanOfTypeExpr.stree.txt │ │ │ │ ├── NamespaceImportInsideCodeBlockCausesError.cspans.txt │ │ │ │ ├── NamespaceImportInsideCodeBlockCausesError.diag.txt │ │ │ │ ├── NamespaceImportInsideCodeBlockCausesError.stree.txt │ │ │ │ ├── NonKeywordStatementInCodeBlockIsHandledCorrectly.cspans.txt │ │ │ │ ├── NonKeywordStatementInCodeBlockIsHandledCorrectly.stree.txt │ │ │ │ ├── ParseBlockIgnoresSingleSlashAtStart.cspans.txt │ │ │ │ ├── ParseBlockIgnoresSingleSlashAtStart.diag.txt │ │ │ │ ├── ParseBlockIgnoresSingleSlashAtStart.stree.txt │ │ │ │ ├── ParseBlockTerminatesSingleLineCommentAtEndOfLine.cspans.txt │ │ │ │ ├── ParseBlockTerminatesSingleLineCommentAtEndOfLine.stree.txt │ │ │ │ ├── TypeAliasInsideCodeBlockIsNotHandledSpecially.cspans.txt │ │ │ │ ├── TypeAliasInsideCodeBlockIsNotHandledSpecially.diag.txt │ │ │ │ └── TypeAliasInsideCodeBlockIsNotHandledSpecially.stree.txt │ │ │ ├── CSharpStatementTest │ │ │ │ ├── CatchClause.cspans.txt │ │ │ │ ├── CatchClause.stree.txt │ │ │ │ ├── DoStatement.cspans.txt │ │ │ │ ├── DoStatement.stree.txt │ │ │ │ ├── ElseClause.cspans.txt │ │ │ │ ├── ElseClause.stree.txt │ │ │ │ ├── ElseIfClause.cspans.txt │ │ │ │ ├── ElseIfClause.stree.txt │ │ │ │ ├── ExceptionFilterError_TryCatchWhen_InCompleteBody.cspans.txt │ │ │ │ ├── ExceptionFilterError_TryCatchWhen_InCompleteBody.diag.txt │ │ │ │ ├── ExceptionFilterError_TryCatchWhen_InCompleteBody.stree.txt │ │ │ │ ├── ExceptionFilterError_TryCatchWhen_InCompleteCondition.cspans.txt │ │ │ │ ├── ExceptionFilterError_TryCatchWhen_InCompleteCondition.diag.txt │ │ │ │ ├── ExceptionFilterError_TryCatchWhen_InCompleteCondition.stree.txt │ │ │ │ ├── ExceptionFilter_IncompleteTryCatchNoBodyWhen.cspans.txt │ │ │ │ ├── ExceptionFilter_IncompleteTryCatchNoBodyWhen.stree.txt │ │ │ │ ├── ExceptionFilter_IncompleteTryCatchWhen.cspans.txt │ │ │ │ ├── ExceptionFilter_IncompleteTryCatchWhen.stree.txt │ │ │ │ ├── ExceptionFilter_IncompleteTryCatchWhenNoBodies.cspans.txt │ │ │ │ ├── ExceptionFilter_IncompleteTryCatchWhenNoBodies.stree.txt │ │ │ │ ├── ExceptionFilter_IncompleteTryWhen.cspans.txt │ │ │ │ ├── ExceptionFilter_IncompleteTryWhen.stree.txt │ │ │ │ ├── ExceptionFilter_MultiLine.cspans.txt │ │ │ │ ├── ExceptionFilter_MultiLine.stree.txt │ │ │ │ ├── ExceptionFilter_NestedTryCatchWhen.cspans.txt │ │ │ │ ├── ExceptionFilter_NestedTryCatchWhen.stree.txt │ │ │ │ ├── ExceptionFilter_TryCatchWhenCatchWhenComplete_SingleLine.cspans.txt │ │ │ │ ├── ExceptionFilter_TryCatchWhenCatchWhenComplete_SingleLine.stree.txt │ │ │ │ ├── ExceptionFilter_TryCatchWhenComplete_SingleLine.cspans.txt │ │ │ │ ├── ExceptionFilter_TryCatchWhenComplete_SingleLine.stree.txt │ │ │ │ ├── ExceptionFilter_TryCatchWhenFinallyComplete_SingleLine.cspans.txt │ │ │ │ ├── ExceptionFilter_TryCatchWhenFinallyComplete_SingleLine.stree.txt │ │ │ │ ├── FinallyClause.cspans.txt │ │ │ │ ├── FinallyClause.stree.txt │ │ │ │ ├── ForEachStatement.cspans.txt │ │ │ │ ├── ForEachStatement.stree.txt │ │ │ │ ├── ForStatement.cspans.txt │ │ │ │ ├── ForStatement.stree.txt │ │ │ │ ├── IfStatement.cspans.txt │ │ │ │ ├── IfStatement.stree.txt │ │ │ │ ├── LockStatement.cspans.txt │ │ │ │ ├── LockStatement.stree.txt │ │ │ │ ├── NonBlockKeywordTreatedAsImplicitExpression.cspans.txt │ │ │ │ ├── NonBlockKeywordTreatedAsImplicitExpression.stree.txt │ │ │ │ ├── StaticUsing_Complete_Spaced.cspans.txt │ │ │ │ ├── StaticUsing_Complete_Spaced.stree.txt │ │ │ │ ├── StaticUsing_GlobalPrefix.cspans.txt │ │ │ │ ├── StaticUsing_GlobalPrefix.stree.txt │ │ │ │ ├── StaticUsing_MultipleIdentifiers.cspans.txt │ │ │ │ ├── StaticUsing_MultipleIdentifiers.stree.txt │ │ │ │ ├── StaticUsing_NoUsing.cspans.txt │ │ │ │ ├── StaticUsing_NoUsing.stree.txt │ │ │ │ ├── StaticUsing_SingleIdentifier.cspans.txt │ │ │ │ ├── StaticUsing_SingleIdentifier.stree.txt │ │ │ │ ├── SwitchStatement.cspans.txt │ │ │ │ ├── SwitchStatement.stree.txt │ │ │ │ ├── TryStatement.cspans.txt │ │ │ │ ├── TryStatement.stree.txt │ │ │ │ ├── UsingNamespaceImport.cspans.txt │ │ │ │ ├── UsingNamespaceImport.stree.txt │ │ │ │ ├── UsingStatement.cspans.txt │ │ │ │ ├── UsingStatement.stree.txt │ │ │ │ ├── UsingTypeAlias.cspans.txt │ │ │ │ ├── UsingTypeAlias.stree.txt │ │ │ │ ├── WhileStatement.cspans.txt │ │ │ │ └── WhileStatement.stree.txt │ │ │ ├── CSharpTemplateTest │ │ │ │ ├── HandlesSimpleTemplateInExplicitExpressionParens.cspans.txt │ │ │ │ ├── HandlesSimpleTemplateInExplicitExpressionParens.stree.txt │ │ │ │ ├── HandlesSimpleTemplateInImplicitExpressionParens.cspans.txt │ │ │ │ ├── HandlesSimpleTemplateInImplicitExpressionParens.stree.txt │ │ │ │ ├── HandlesSimpleTemplateInStatementWithinCodeBlock.cspans.txt │ │ │ │ ├── HandlesSimpleTemplateInStatementWithinCodeBlock.stree.txt │ │ │ │ ├── HandlesSimpleTemplateInStatementWithinStatementBlock.cspans.txt │ │ │ │ ├── HandlesSimpleTemplateInStatementWithinStatementBlock.stree.txt │ │ │ │ ├── HandlesSingleLineImmediatelyFollowingStatementChar.cspans.txt │ │ │ │ ├── HandlesSingleLineImmediatelyFollowingStatementChar.stree.txt │ │ │ │ ├── HandlesSingleLineTemplate.cspans.txt │ │ │ │ ├── HandlesSingleLineTemplate.stree.txt │ │ │ │ ├── HandlesTwoTemplatesInImplicitExpressionParens.cspans.txt │ │ │ │ ├── HandlesTwoTemplatesInImplicitExpressionParens.stree.txt │ │ │ │ ├── HandlesTwoTemplatesInStatementWithinCodeBlock.cspans.txt │ │ │ │ ├── HandlesTwoTemplatesInStatementWithinCodeBlock.stree.txt │ │ │ │ ├── HandlessTwoTemplatesInStatementWithinStatementBlock.cspans.txt │ │ │ │ ├── HandlessTwoTemplatesInStatementWithinStatementBlock.stree.txt │ │ │ │ ├── ProducesErrorButCorrectlyParsesNestedTemplateInImplicitExprParens.cspans.txt │ │ │ │ ├── ProducesErrorButCorrectlyParsesNestedTemplateInImplicitExprParens.diag.txt │ │ │ │ ├── ProducesErrorButCorrectlyParsesNestedTemplateInImplicitExprParens.stree.txt │ │ │ │ ├── ProducesErrorButCorrectlyParsesNestedTemplateInStmtWithinCodeBlock.cspans.txt │ │ │ │ ├── ProducesErrorButCorrectlyParsesNestedTemplateInStmtWithinCodeBlock.diag.txt │ │ │ │ ├── ProducesErrorButCorrectlyParsesNestedTemplateInStmtWithinCodeBlock.stree.txt │ │ │ │ ├── ProducesErrorButCorrectlyParsesNestedTemplateInStmtWithinStmtBlock.cspans.txt │ │ │ │ ├── ProducesErrorButCorrectlyParsesNestedTemplateInStmtWithinStmtBlock.diag.txt │ │ │ │ ├── ProducesErrorButCorrectlyParsesNestedTemplateInStmtWithinStmtBlock.stree.txt │ │ │ │ ├── _WithDoubleTransition_DoesNotThrow.cspans.txt │ │ │ │ └── _WithDoubleTransition_DoesNotThrow.stree.txt │ │ │ ├── CSharpToMarkupSwitchTest │ │ │ │ ├── AllowsMarkupInIfBodyWithBraces.cspans.txt │ │ │ │ ├── AllowsMarkupInIfBodyWithBraces.stree.txt │ │ │ │ ├── AllowsMarkupInIfBodyWithBracesWithinCodeBlock.cspans.txt │ │ │ │ ├── AllowsMarkupInIfBodyWithBracesWithinCodeBlock.stree.txt │ │ │ │ ├── CorrectlyReturnsFromMarkupBlockWithPseudoTag.cspans.txt │ │ │ │ ├── CorrectlyReturnsFromMarkupBlockWithPseudoTag.stree.txt │ │ │ │ ├── CorrectlyReturnsFromMarkupBlockWithPseudoTagInCodeBlock.cspans.txt │ │ │ │ ├── CorrectlyReturnsFromMarkupBlockWithPseudoTagInCodeBlock.stree.txt │ │ │ │ ├── GivesAllWhitespaceOnSameLineWithTrailingNewLineToMarkupExclPreceedingNewline.cspans.txt │ │ │ │ ├── GivesAllWhitespaceOnSameLineWithTrailingNewLineToMarkupExclPreceedingNewline.stree.txt │ │ │ │ ├── GivesSpacesToCodeOnAtColonTemplateTransitionInDesignTimeMode.cspans.txt │ │ │ │ ├── GivesSpacesToCodeOnAtColonTemplateTransitionInDesignTimeMode.stree.txt │ │ │ │ ├── GivesSpacesToCodeOnAtColonTransitionInDesignTimeMode.cspans.txt │ │ │ │ ├── GivesSpacesToCodeOnAtColonTransitionInDesignTimeMode.stree.txt │ │ │ │ ├── GivesSpacesToCodeOnAtTagTemplateTransitionInDesignTimeMode.cspans.txt │ │ │ │ ├── GivesSpacesToCodeOnAtTagTemplateTransitionInDesignTimeMode.stree.txt │ │ │ │ ├── GivesSpacesToCodeOnInvalidAtTagTransitionInDesignTimeMode.cspans.txt │ │ │ │ ├── GivesSpacesToCodeOnInvalidAtTagTransitionInDesignTimeMode.diag.txt │ │ │ │ ├── GivesSpacesToCodeOnInvalidAtTagTransitionInDesignTimeMode.stree.txt │ │ │ │ ├── GivesSpacesToCodeOnTagTransitionInDesignTimeMode.cspans.txt │ │ │ │ ├── GivesSpacesToCodeOnTagTransitionInDesignTimeMode.stree.txt │ │ │ │ ├── ParsesMarkupStatementOnOpenAngleBracket.cspans.txt │ │ │ │ ├── ParsesMarkupStatementOnOpenAngleBracket.stree.txt │ │ │ │ ├── ParsesMarkupStatementOnOpenAngleBracketInCodeBlock.cspans.txt │ │ │ │ ├── ParsesMarkupStatementOnOpenAngleBracketInCodeBlock.stree.txt │ │ │ │ ├── ParsesMarkupStatementOnSwitchCharacterFollowedByColon.cspans.txt │ │ │ │ ├── ParsesMarkupStatementOnSwitchCharacterFollowedByColon.stree.txt │ │ │ │ ├── ParsesMarkupStatementOnSwitchCharacterFollowedByColonInCodeBlock.cspans.txt │ │ │ │ ├── ParsesMarkupStatementOnSwitchCharacterFollowedByColonInCodeBlock.stree.txt │ │ │ │ ├── ParsesMarkupStatementOnSwitchCharacterFollowedByDoubleColon.cspans.txt │ │ │ │ ├── ParsesMarkupStatementOnSwitchCharacterFollowedByDoubleColon.stree.txt │ │ │ │ ├── ParsesMarkupStatementOnSwitchCharacterFollowedByTripleColon.cspans.txt │ │ │ │ ├── ParsesMarkupStatementOnSwitchCharacterFollowedByTripleColon.stree.txt │ │ │ │ ├── ShouldSupportMarkupWithoutPreceedingWhitespace.cspans.txt │ │ │ │ ├── ShouldSupportMarkupWithoutPreceedingWhitespace.stree.txt │ │ │ │ ├── ShouldSupportSingleLineMarkupContainingStatementBlock.cspans.txt │ │ │ │ ├── ShouldSupportSingleLineMarkupContainingStatementBlock.stree.txt │ │ │ │ ├── SingleAngleBracketDoesNotCauseSwitchIfOuterBlockIsTerminated.cspans.txt │ │ │ │ ├── SingleAngleBracketDoesNotCauseSwitchIfOuterBlockIsTerminated.stree.txt │ │ │ │ ├── SupportsAllKindsOfImplicitMarkupInCodeBlock.cspans.txt │ │ │ │ ├── SupportsAllKindsOfImplicitMarkupInCodeBlock.stree.txt │ │ │ │ ├── SupportsMarkupInCaseAndDefaultBranchesOfSwitch.cspans.txt │ │ │ │ ├── SupportsMarkupInCaseAndDefaultBranchesOfSwitch.stree.txt │ │ │ │ ├── SupportsMarkupInCaseAndDefaultBranchesOfSwitchInCodeBlock.cspans.txt │ │ │ │ └── SupportsMarkupInCaseAndDefaultBranchesOfSwitchInCodeBlock.stree.txt │ │ │ ├── CSharpVerbatimBlockTest │ │ │ │ ├── InnerImplicitExprAcceptsTrailingNewlineInDesignTimeMode.cspans.txt │ │ │ │ ├── InnerImplicitExprAcceptsTrailingNewlineInDesignTimeMode.stree.txt │ │ │ │ ├── InnerImplicitExprDoesNotAcceptDotAfterAt.cspans.txt │ │ │ │ ├── InnerImplicitExprDoesNotAcceptDotAfterAt.diag.txt │ │ │ │ ├── InnerImplicitExprDoesNotAcceptDotAfterAt.stree.txt │ │ │ │ ├── InnerImplicitExprDoesNotAcceptTrailingNewlineInRunTimeMode.cspans.txt │ │ │ │ ├── InnerImplicitExprDoesNotAcceptTrailingNewlineInRunTimeMode.stree.txt │ │ │ │ ├── InnerImplicitExprWithOnlySingleAtAcceptsSingleSpaceOrNewlineAtDesignTime.cspans.txt │ │ │ │ ├── InnerImplicitExprWithOnlySingleAtAcceptsSingleSpaceOrNewlineAtDesignTime.diag.txt │ │ │ │ ├── InnerImplicitExprWithOnlySingleAtAcceptsSingleSpaceOrNewlineAtDesignTime.stree.txt │ │ │ │ ├── InnerImplicitExprWithOnlySingleAtOutputsZeroLengthCodeSpan.cspans.txt │ │ │ │ ├── InnerImplicitExprWithOnlySingleAtOutputsZeroLengthCodeSpan.diag.txt │ │ │ │ ├── InnerImplicitExprWithOnlySingleAtOutputsZeroLengthCodeSpan.stree.txt │ │ │ │ ├── VerbatimBlock.cspans.txt │ │ │ │ └── VerbatimBlock.stree.txt │ │ │ ├── CSharpWhitespaceHandlingTest │ │ │ │ ├── StmtBlockDoesNotAcceptTrailingNewlineIfTheyAreSignificantToAncestor.cspans.txt │ │ │ │ └── StmtBlockDoesNotAcceptTrailingNewlineIfTheyAreSignificantToAncestor.stree.txt │ │ │ ├── HtmlAttributeTest │ │ │ │ ├── ConditionalAttributeCollapserDoesNotRewriteEscapedTransitions.cspans.txt │ │ │ │ ├── ConditionalAttributeCollapserDoesNotRewriteEscapedTransitions.stree.txt │ │ │ │ ├── ConditionalAttributesAreDisabledForDataAttributesInBlock.cspans.txt │ │ │ │ ├── ConditionalAttributesAreDisabledForDataAttributesInBlock.stree.txt │ │ │ │ ├── ConditionalAttributesAreDisabledForDataAttributesInDocument.cspans.txt │ │ │ │ ├── ConditionalAttributesAreDisabledForDataAttributesInDocument.stree.txt │ │ │ │ ├── ConditionalAttributesAreEnabledForDataAttributesWithExperimentalFlag.cspans.txt │ │ │ │ ├── ConditionalAttributesAreEnabledForDataAttributesWithExperimentalFlag.stree.txt │ │ │ │ ├── ConditionalAttributesWithWeirdSpacingAreDisabledForDataAttributesInBlock.cspans.txt │ │ │ │ ├── ConditionalAttributesWithWeirdSpacingAreDisabledForDataAttributesInBlock.stree.txt │ │ │ │ ├── ConditionalAttributesWithWeirdSpacingAreDisabledForDataAttributesInDocument.cspans.txt │ │ │ │ ├── ConditionalAttributesWithWeirdSpacingAreDisabledForDataAttributesInDocument.stree.txt │ │ │ │ ├── DoubleQuotedLiteralAttribute.cspans.txt │ │ │ │ ├── DoubleQuotedLiteralAttribute.stree.txt │ │ │ │ ├── DynamicAttributeWithWhitespaceSurroundingEquals.cspans.txt │ │ │ │ ├── DynamicAttributeWithWhitespaceSurroundingEquals.stree.txt │ │ │ │ ├── MultiPartLiteralAttribute.cspans.txt │ │ │ │ ├── MultiPartLiteralAttribute.stree.txt │ │ │ │ ├── MultiValueExpressionAttribute.cspans.txt │ │ │ │ ├── MultiValueExpressionAttribute.stree.txt │ │ │ │ ├── NewLineBetweenAttributes.cspans.txt │ │ │ │ ├── NewLineBetweenAttributes.stree.txt │ │ │ │ ├── NewLinePrecedingAttribute.cspans.txt │ │ │ │ ├── NewLinePrecedingAttribute.stree.txt │ │ │ │ ├── SimpleExpressionAttribute.cspans.txt │ │ │ │ ├── SimpleExpressionAttribute.stree.txt │ │ │ │ ├── SimpleLiteralAttribute.cspans.txt │ │ │ │ ├── SimpleLiteralAttribute.stree.txt │ │ │ │ ├── SimpleLiteralAttributeWithWhitespaceSurroundingEquals.cspans.txt │ │ │ │ ├── SimpleLiteralAttributeWithWhitespaceSurroundingEquals.stree.txt │ │ │ │ ├── SymbolBoundAttributes1.cspans.txt │ │ │ │ ├── SymbolBoundAttributes1.stree.txt │ │ │ │ ├── SymbolBoundAttributes2.cspans.txt │ │ │ │ ├── SymbolBoundAttributes2.stree.txt │ │ │ │ ├── SymbolBoundAttributes3.cspans.txt │ │ │ │ ├── SymbolBoundAttributes3.stree.txt │ │ │ │ ├── SymbolBoundAttributes4.cspans.txt │ │ │ │ ├── SymbolBoundAttributes4.stree.txt │ │ │ │ ├── SymbolBoundAttributes5.cspans.txt │ │ │ │ ├── SymbolBoundAttributes5.stree.txt │ │ │ │ ├── SymbolBoundAttributes6.cspans.txt │ │ │ │ ├── SymbolBoundAttributes6.stree.txt │ │ │ │ ├── SymbolBoundAttributes_BeforeEqualWhitespace1.cspans.txt │ │ │ │ ├── SymbolBoundAttributes_BeforeEqualWhitespace1.stree.txt │ │ │ │ ├── SymbolBoundAttributes_BeforeEqualWhitespace2.cspans.txt │ │ │ │ ├── SymbolBoundAttributes_BeforeEqualWhitespace2.stree.txt │ │ │ │ ├── SymbolBoundAttributes_BeforeEqualWhitespace3.cspans.txt │ │ │ │ ├── SymbolBoundAttributes_BeforeEqualWhitespace3.stree.txt │ │ │ │ ├── SymbolBoundAttributes_BeforeEqualWhitespace4.cspans.txt │ │ │ │ ├── SymbolBoundAttributes_BeforeEqualWhitespace4.stree.txt │ │ │ │ ├── SymbolBoundAttributes_BeforeEqualWhitespace5.cspans.txt │ │ │ │ ├── SymbolBoundAttributes_BeforeEqualWhitespace5.stree.txt │ │ │ │ ├── SymbolBoundAttributes_BeforeEqualWhitespace6.cspans.txt │ │ │ │ ├── SymbolBoundAttributes_BeforeEqualWhitespace6.stree.txt │ │ │ │ ├── SymbolBoundAttributes_Whitespace1.cspans.txt │ │ │ │ ├── SymbolBoundAttributes_Whitespace1.stree.txt │ │ │ │ ├── SymbolBoundAttributes_Whitespace2.cspans.txt │ │ │ │ ├── SymbolBoundAttributes_Whitespace2.stree.txt │ │ │ │ ├── SymbolBoundAttributes_Whitespace3.cspans.txt │ │ │ │ ├── SymbolBoundAttributes_Whitespace3.stree.txt │ │ │ │ ├── SymbolBoundAttributes_Whitespace4.cspans.txt │ │ │ │ ├── SymbolBoundAttributes_Whitespace4.stree.txt │ │ │ │ ├── SymbolBoundAttributes_Whitespace5.cspans.txt │ │ │ │ ├── SymbolBoundAttributes_Whitespace5.stree.txt │ │ │ │ ├── SymbolBoundAttributes_Whitespace6.cspans.txt │ │ │ │ ├── SymbolBoundAttributes_Whitespace6.stree.txt │ │ │ │ ├── UnquotedAttributeWithCodeWithSpacesInBlock.cspans.txt │ │ │ │ ├── UnquotedAttributeWithCodeWithSpacesInBlock.stree.txt │ │ │ │ ├── UnquotedAttributeWithCodeWithSpacesInDocument.cspans.txt │ │ │ │ ├── UnquotedAttributeWithCodeWithSpacesInDocument.stree.txt │ │ │ │ ├── UnquotedLiteralAttribute.cspans.txt │ │ │ │ ├── UnquotedLiteralAttribute.stree.txt │ │ │ │ ├── VirtualPathAttributesWorkWithConditionalAttributes.cspans.txt │ │ │ │ ├── VirtualPathAttributesWorkWithConditionalAttributes.stree.txt │ │ │ │ ├── WhitespaceAndNewLinePrecedingAttribute.cspans.txt │ │ │ │ └── WhitespaceAndNewLinePrecedingAttribute.stree.txt │ │ │ ├── HtmlBlockTest │ │ │ │ ├── AcceptsEmptyTextTag.cspans.txt │ │ │ │ ├── AcceptsEmptyTextTag.stree.txt │ │ │ │ ├── AcceptsTextTagAsOuterTagButDoesNotRender.cspans.txt │ │ │ │ ├── AcceptsTextTagAsOuterTagButDoesNotRender.stree.txt │ │ │ │ ├── AllowsCloseAngleBracketInAttributeValueIfDoubleQuoted.cspans.txt │ │ │ │ ├── AllowsCloseAngleBracketInAttributeValueIfDoubleQuoted.stree.txt │ │ │ │ ├── AllowsCloseAngleBracketInAttributeValueIfSingleQuoted.cspans.txt │ │ │ │ ├── AllowsCloseAngleBracketInAttributeValueIfSingleQuoted.stree.txt │ │ │ │ ├── AllowsSlashInAttributeValueIfDoubleQuoted.cspans.txt │ │ │ │ ├── AllowsSlashInAttributeValueIfDoubleQuoted.stree.txt │ │ │ │ ├── AllowsSlashInAttributeValueIfSingleQuoted.cspans.txt │ │ │ │ ├── AllowsSlashInAttributeValueIfSingleQuoted.stree.txt │ │ │ │ ├── AllowsStartAndEndTagsToDifferInCase.cspans.txt │ │ │ │ ├── AllowsStartAndEndTagsToDifferInCase.stree.txt │ │ │ │ ├── AllowsUnclosedTagsAsLongAsItCanRecoverToAnExpectedEndTag.cspans.txt │ │ │ │ ├── AllowsUnclosedTagsAsLongAsItCanRecoverToAnExpectedEndTag.stree.txt │ │ │ │ ├── CanHandleSelfClosingTagsWithinBlock.cspans.txt │ │ │ │ ├── CanHandleSelfClosingTagsWithinBlock.stree.txt │ │ │ │ ├── CorrectlyHandlesSingleLineOfMarkupWithEmbeddedStatement.cspans.txt │ │ │ │ ├── CorrectlyHandlesSingleLineOfMarkupWithEmbeddedStatement.stree.txt │ │ │ │ ├── DoesNotConsiderPsuedoTagWithinMarkupBlock.cspans.txt │ │ │ │ ├── DoesNotConsiderPsuedoTagWithinMarkupBlock.stree.txt │ │ │ │ ├── DoesNotTerminateXMLProcInstrAtCloseAngleUnlessPreceededByQuestionMark.cspans.txt │ │ │ │ ├── DoesNotTerminateXMLProcInstrAtCloseAngleUnlessPreceededByQuestionMark.stree.txt │ │ │ │ ├── HandlesOpenAngleAtEof.cspans.txt │ │ │ │ ├── HandlesOpenAngleAtEof.diag.txt │ │ │ │ ├── HandlesOpenAngleAtEof.stree.txt │ │ │ │ ├── HandlesOpenAngleWithProperTagFollowingIt.cspans.txt │ │ │ │ ├── HandlesOpenAngleWithProperTagFollowingIt.diag.txt │ │ │ │ ├── HandlesOpenAngleWithProperTagFollowingIt.stree.txt │ │ │ │ ├── HandlesUnbalancedTripleDashHTMLComments.cspans.txt │ │ │ │ ├── HandlesUnbalancedTripleDashHTMLComments.stree.txt │ │ │ │ ├── HtmlCommentSupportsMultipleDashes.cspans.txt │ │ │ │ ├── HtmlCommentSupportsMultipleDashes.stree.txt │ │ │ │ ├── IgnoresTagsInContentsOfScriptTag.cspans.txt │ │ │ │ ├── IgnoresTagsInContentsOfScriptTag.stree.txt │ │ │ │ ├── OnlyTerminatesCommentOnFullEndSequence.cspans.txt │ │ │ │ ├── OnlyTerminatesCommentOnFullEndSequence.stree.txt │ │ │ │ ├── ParsesSGMLDeclarationAsEmptyTag.cspans.txt │ │ │ │ ├── ParsesSGMLDeclarationAsEmptyTag.stree.txt │ │ │ │ ├── ParsesUntilMatchingEndTagIfFirstNonWhitespaceCharacterIsStartTag.cspans.txt │ │ │ │ ├── ParsesUntilMatchingEndTagIfFirstNonWhitespaceCharacterIsStartTag.stree.txt │ │ │ │ ├── ParsesXMLProcessingInstructionAsEmptyTag.cspans.txt │ │ │ │ ├── ParsesXMLProcessingInstructionAsEmptyTag.stree.txt │ │ │ │ ├── ProperlyBalancesCommentStartAndEndTags.cspans.txt │ │ │ │ ├── ProperlyBalancesCommentStartAndEndTags.stree.txt │ │ │ │ ├── ReadsToEndOfLineIfFirstCharacterAfterTransitionIsColon.cspans.txt │ │ │ │ ├── ReadsToEndOfLineIfFirstCharacterAfterTransitionIsColon.stree.txt │ │ │ │ ├── RendersLiteralTextTagIfDoubled.cspans.txt │ │ │ │ ├── RendersLiteralTextTagIfDoubled.stree.txt │ │ │ │ ├── StopsAtMatchingCloseTagToStartTag.cspans.txt │ │ │ │ ├── StopsAtMatchingCloseTagToStartTag.stree.txt │ │ │ │ ├── StopsParsingMidEmptyTagIfEOFReached.cspans.txt │ │ │ │ ├── StopsParsingMidEmptyTagIfEOFReached.diag.txt │ │ │ │ ├── StopsParsingMidEmptyTagIfEOFReached.stree.txt │ │ │ │ ├── StopsParsingSingleLineBlockAtEOFIfNoEOLReached.cspans.txt │ │ │ │ ├── StopsParsingSingleLineBlockAtEOFIfNoEOLReached.stree.txt │ │ │ │ ├── SupportsCommentAsBlock.cspans.txt │ │ │ │ ├── SupportsCommentAsBlock.stree.txt │ │ │ │ ├── SupportsCommentWithExtraDashAsBlock.cspans.txt │ │ │ │ ├── SupportsCommentWithExtraDashAsBlock.stree.txt │ │ │ │ ├── SupportsCommentWithinBlock.cspans.txt │ │ │ │ ├── SupportsCommentWithinBlock.stree.txt │ │ │ │ ├── SupportsScriptTagsWithLessThanSignsInThem.cspans.txt │ │ │ │ ├── SupportsScriptTagsWithLessThanSignsInThem.stree.txt │ │ │ │ ├── SupportsScriptTagsWithSpacedLessThanSignsInThem.cspans.txt │ │ │ │ ├── SupportsScriptTagsWithSpacedLessThanSignsInThem.stree.txt │ │ │ │ ├── SupportsTagsWithAttributes.cspans.txt │ │ │ │ ├── SupportsTagsWithAttributes.stree.txt │ │ │ │ ├── TagWithoutCloseAngleDoesNotTerminateBlock.cspans.txt │ │ │ │ ├── TagWithoutCloseAngleDoesNotTerminateBlock.diag.txt │ │ │ │ ├── TagWithoutCloseAngleDoesNotTerminateBlock.stree.txt │ │ │ │ ├── TerminatesAtEOF.cspans.txt │ │ │ │ ├── TerminatesAtEOF.diag.txt │ │ │ │ ├── TerminatesAtEOF.stree.txt │ │ │ │ ├── TerminatesAtEOFWhenParsingComment.cspans.txt │ │ │ │ ├── TerminatesAtEOFWhenParsingComment.stree.txt │ │ │ │ ├── TerminatesCommentAtFirstOccurrenceOfEndSequence.cspans.txt │ │ │ │ ├── TerminatesCommentAtFirstOccurrenceOfEndSequence.stree.txt │ │ │ │ ├── TerminatesSGMLDeclarationAtFirstCloseAngle.cspans.txt │ │ │ │ ├── TerminatesSGMLDeclarationAtFirstCloseAngle.stree.txt │ │ │ │ ├── TerminatesXMLProcessingInstructionAtQuestionMarkCloseAnglePair.cspans.txt │ │ │ │ ├── TerminatesXMLProcessingInstructionAtQuestionMarkCloseAnglePair.stree.txt │ │ │ │ ├── TreatsMalformedTagsAsContent.cspans.txt │ │ │ │ ├── TreatsMalformedTagsAsContent.diag.txt │ │ │ │ ├── TreatsMalformedTagsAsContent.stree.txt │ │ │ │ ├── WithSelfClosingTagJustEmitsTag.cspans.txt │ │ │ │ └── WithSelfClosingTagJustEmitsTag.stree.txt │ │ │ ├── HtmlDocumentTest │ │ │ │ ├── AcceptsEndTagWithNoMatchingStartTag.cspans.txt │ │ │ │ ├── AcceptsEndTagWithNoMatchingStartTag.stree.txt │ │ │ │ ├── AcceptsSwapTokenAtEndOfFileAndOutputsZeroLengthCodeSpan.cspans.txt │ │ │ │ ├── AcceptsSwapTokenAtEndOfFileAndOutputsZeroLengthCodeSpan.diag.txt │ │ │ │ ├── AcceptsSwapTokenAtEndOfFileAndOutputsZeroLengthCodeSpan.stree.txt │ │ │ │ ├── CorrectlyHandlesOddlySpacedHTMLElements.cspans.txt │ │ │ │ ├── CorrectlyHandlesOddlySpacedHTMLElements.stree.txt │ │ │ │ ├── CorrectlyHandlesSingleLineOfMarkupWithEmbeddedStatement.cspans.txt │ │ │ │ ├── CorrectlyHandlesSingleLineOfMarkupWithEmbeddedStatement.stree.txt │ │ │ │ ├── DoesNotIgnoreNewLineAtTheEndOfMarkupBlock.cspans.txt │ │ │ │ ├── DoesNotIgnoreNewLineAtTheEndOfMarkupBlock.stree.txt │ │ │ │ ├── DoesNotIgnoreWhitespaceAtTheEndOfVerbatimBlockIfNoNewlinePresent.cspans.txt │ │ │ │ ├── DoesNotIgnoreWhitespaceAtTheEndOfVerbatimBlockIfNoNewlinePresent.stree.txt │ │ │ │ ├── DoesNotRenderExtraNewLineAtTheEndOfVerbatimBlock.cspans.txt │ │ │ │ ├── DoesNotRenderExtraNewLineAtTheEndOfVerbatimBlock.stree.txt │ │ │ │ ├── DoesNotRenderExtraWhitespaceAndNewLineAtTheEndOfVerbatimBlock.cspans.txt │ │ │ │ ├── DoesNotRenderExtraWhitespaceAndNewLineAtTheEndOfVerbatimBlock.stree.txt │ │ │ │ ├── DoesNotRenderNewlineAfterTextTagInVerbatimBlockIfFollowedByCSharp.cspans.txt │ │ │ │ ├── DoesNotRenderNewlineAfterTextTagInVerbatimBlockIfFollowedByCSharp.stree.txt │ │ │ │ ├── DoesNotReturnErrorOnMismatchedTags.cspans.txt │ │ │ │ ├── DoesNotReturnErrorOnMismatchedTags.stree.txt │ │ │ │ ├── DoesNotSwitchToCodeOnEmailAddressInAttribute.cspans.txt │ │ │ │ ├── DoesNotSwitchToCodeOnEmailAddressInAttribute.stree.txt │ │ │ │ ├── EmitsAtSignAsMarkupIfAtEndOfFile.cspans.txt │ │ │ │ ├── EmitsAtSignAsMarkupIfAtEndOfFile.diag.txt │ │ │ │ ├── EmitsAtSignAsMarkupIfAtEndOfFile.stree.txt │ │ │ │ ├── EmitsCodeBlockIfFirstCharacterIsSwapCharacter.cspans.txt │ │ │ │ ├── EmitsCodeBlockIfFirstCharacterIsSwapCharacter.stree.txt │ │ │ │ ├── HandlesExtraNewLineBeforeMarkupInNestedBlock.cspans.txt │ │ │ │ ├── HandlesExtraNewLineBeforeMarkupInNestedBlock.stree.txt │ │ │ │ ├── HandlesNewLineAndMarkupInNestedBlock.cspans.txt │ │ │ │ ├── HandlesNewLineAndMarkupInNestedBlock.stree.txt │ │ │ │ ├── HandlesNewLineInNestedBlock.cspans.txt │ │ │ │ ├── HandlesNewLineInNestedBlock.stree.txt │ │ │ │ ├── HandsParsingOverToCodeParserWhenAtSignEncounteredAndEmitsOutput.cspans.txt │ │ │ │ ├── HandsParsingOverToCodeParserWhenAtSignEncounteredAndEmitsOutput.stree.txt │ │ │ │ ├── IgnoresTagsInContentsOfScriptTag.cspans.txt │ │ │ │ ├── IgnoresTagsInContentsOfScriptTag.stree.txt │ │ │ │ ├── NestedCodeBlockWithMarkupSetsDotAsMarkup.cspans.txt │ │ │ │ ├── NestedCodeBlockWithMarkupSetsDotAsMarkup.stree.txt │ │ │ │ ├── NoLongerSupportsDollarOpenBraceCombination.cspans.txt │ │ │ │ ├── NoLongerSupportsDollarOpenBraceCombination.stree.txt │ │ │ │ ├── OutputsEmptyBlockWithEmptyMarkupSpanIfContentIsEmptyString.cspans.txt │ │ │ │ ├── OutputsEmptyBlockWithEmptyMarkupSpanIfContentIsEmptyString.stree.txt │ │ │ │ ├── OutputsWhitespaceOnlyContentAsSingleWhitespaceMarkupSpan.cspans.txt │ │ │ │ ├── OutputsWhitespaceOnlyContentAsSingleWhitespaceMarkupSpan.stree.txt │ │ │ │ ├── ParseDocumentDoesNotSwitchToCodeOnEmailAddressInText.cspans.txt │ │ │ │ ├── ParseDocumentDoesNotSwitchToCodeOnEmailAddressInText.stree.txt │ │ │ │ ├── ParseSectionIgnoresTagsInContentsOfScriptTag.cspans.txt │ │ │ │ ├── ParseSectionIgnoresTagsInContentsOfScriptTag.stree.txt │ │ │ │ ├── ParsesWholeContentAsOneSpanIfNoSwapCharacterEncountered.cspans.txt │ │ │ │ ├── ParsesWholeContentAsOneSpanIfNoSwapCharacterEncountered.stree.txt │ │ │ │ ├── RendersExtraNewlineAtTheEndTextTagInVerbatimBlockIfFollowedByHtml.cspans.txt │ │ │ │ ├── RendersExtraNewlineAtTheEndTextTagInVerbatimBlockIfFollowedByHtml.stree.txt │ │ │ │ ├── RendersNewlineAfterTextTagInVerbatimBlockIfFollowedByMarkupTransition.cspans.txt │ │ │ │ ├── RendersNewlineAfterTextTagInVerbatimBlockIfFollowedByMarkupTransition.stree.txt │ │ │ │ ├── RendersTextPseudoTagAsMarkup.cspans.txt │ │ │ │ ├── RendersTextPseudoTagAsMarkup.stree.txt │ │ │ │ ├── ReturnsOneMarkupSegmentIfNoCodeBlocksEncountered.cspans.txt │ │ │ │ ├── ReturnsOneMarkupSegmentIfNoCodeBlocksEncountered.stree.txt │ │ │ │ ├── WithDoubleTransitionAtBeginningOfAttributeValue_DoesNotThrow.cspans.txt │ │ │ │ ├── WithDoubleTransitionAtBeginningOfAttributeValue_DoesNotThrow.stree.txt │ │ │ │ ├── WithDoubleTransitionAtEndOfAttributeValue_DoesNotThrow.cspans.txt │ │ │ │ ├── WithDoubleTransitionAtEndOfAttributeValue_DoesNotThrow.stree.txt │ │ │ │ ├── WithDoubleTransitionBetweenAttributeValue_DoesNotThrow.cspans.txt │ │ │ │ ├── WithDoubleTransitionBetweenAttributeValue_DoesNotThrow.stree.txt │ │ │ │ ├── WithDoubleTransitionInAttributeValue_DoesNotThrow.cspans.txt │ │ │ │ ├── WithDoubleTransitionInAttributeValue_DoesNotThrow.stree.txt │ │ │ │ ├── WithDoubleTransitionInEmail_DoesNotThrow.cspans.txt │ │ │ │ ├── WithDoubleTransitionInEmail_DoesNotThrow.stree.txt │ │ │ │ ├── WithDoubleTransitionInRegex_DoesNotThrow.cspans.txt │ │ │ │ ├── WithDoubleTransitionInRegex_DoesNotThrow.stree.txt │ │ │ │ ├── WithDoubleTransitionWithExpressionBlock_DoesNotThrow.cspans.txt │ │ │ │ ├── WithDoubleTransitionWithExpressionBlock_DoesNotThrow.stree.txt │ │ │ │ ├── WithUnexpectedTransitionsInAttributeValue_Throws.cspans.txt │ │ │ │ ├── WithUnexpectedTransitionsInAttributeValue_Throws.diag.txt │ │ │ │ ├── WithUnexpectedTransitionsInAttributeValue_Throws.stree.txt │ │ │ │ ├── WithinSectionDoesNotCreateDocumentLevelSpan.cspans.txt │ │ │ │ └── WithinSectionDoesNotCreateDocumentLevelSpan.stree.txt │ │ │ ├── HtmlErrorTest │ │ │ │ ├── AllowsInvalidTagNamesAsLongAsParserCanIdentifyEndTag.cspans.txt │ │ │ │ ├── AllowsInvalidTagNamesAsLongAsParserCanIdentifyEndTag.stree.txt │ │ │ │ ├── StartingWithEndTagErrorsThenOutputsMarkupSegmentAndEndsBlock.cspans.txt │ │ │ │ ├── StartingWithEndTagErrorsThenOutputsMarkupSegmentAndEndsBlock.diag.txt │ │ │ │ ├── StartingWithEndTagErrorsThenOutputsMarkupSegmentAndEndsBlock.stree.txt │ │ │ │ ├── ThrowsErrorIfEndTextTagContainsTextAfterName.cspans.txt │ │ │ │ ├── ThrowsErrorIfEndTextTagContainsTextAfterName.diag.txt │ │ │ │ ├── ThrowsErrorIfEndTextTagContainsTextAfterName.stree.txt │ │ │ │ ├── ThrowsErrorIfStartTextTagContainsTextAfterName.cspans.txt │ │ │ │ ├── ThrowsErrorIfStartTextTagContainsTextAfterName.diag.txt │ │ │ │ ├── ThrowsErrorIfStartTextTagContainsTextAfterName.stree.txt │ │ │ │ ├── ThrowsExceptionIfBlockDoesNotStartWithTag.cspans.txt │ │ │ │ ├── ThrowsExceptionIfBlockDoesNotStartWithTag.diag.txt │ │ │ │ ├── ThrowsExceptionIfBlockDoesNotStartWithTag.stree.txt │ │ │ │ ├── WithUnclosedTagAtEOFThrowsMissingEndTagException.cspans.txt │ │ │ │ ├── WithUnclosedTagAtEOFThrowsMissingEndTagException.diag.txt │ │ │ │ ├── WithUnclosedTagAtEOFThrowsMissingEndTagException.stree.txt │ │ │ │ ├── WithUnclosedTopLevelTagThrowsOnOutermostUnclosedTag.cspans.txt │ │ │ │ ├── WithUnclosedTopLevelTagThrowsOnOutermostUnclosedTag.diag.txt │ │ │ │ ├── WithUnclosedTopLevelTagThrowsOnOutermostUnclosedTag.stree.txt │ │ │ │ ├── WithUnfinishedTagAtEOFThrowsIncompleteTagException.cspans.txt │ │ │ │ ├── WithUnfinishedTagAtEOFThrowsIncompleteTagException.diag.txt │ │ │ │ └── WithUnfinishedTagAtEOFThrowsIncompleteTagException.stree.txt │ │ │ ├── HtmlTagsTest │ │ │ │ ├── CDataTag.cspans.txt │ │ │ │ ├── CDataTag.stree.txt │ │ │ │ ├── CommentTag.cspans.txt │ │ │ │ ├── CommentTag.stree.txt │ │ │ │ ├── DocTypeTag.cspans.txt │ │ │ │ ├── DocTypeTag.stree.txt │ │ │ │ ├── ElementTags.cspans.txt │ │ │ │ ├── ElementTags.stree.txt │ │ │ │ ├── EmptyTag.cspans.txt │ │ │ │ ├── EmptyTag.stree.txt │ │ │ │ ├── EmptyTagNestsLikeNormalTag.cspans.txt │ │ │ │ ├── EmptyTagNestsLikeNormalTag.diag.txt │ │ │ │ ├── EmptyTagNestsLikeNormalTag.stree.txt │ │ │ │ ├── IncompleteVoidElementEndTag.cspans.txt │ │ │ │ ├── IncompleteVoidElementEndTag.diag.txt │ │ │ │ ├── IncompleteVoidElementEndTag.stree.txt │ │ │ │ ├── ProcessingInstructionTag.cspans.txt │ │ │ │ ├── ProcessingInstructionTag.stree.txt │ │ │ │ ├── ScriptTag.cspans.txt │ │ │ │ ├── ScriptTag.stree.txt │ │ │ │ ├── ScriptTag_WithNestedBeginTag.cspans.txt │ │ │ │ ├── ScriptTag_WithNestedBeginTag.stree.txt │ │ │ │ ├── ScriptTag_WithNestedEndTag.cspans.txt │ │ │ │ ├── ScriptTag_WithNestedEndTag.stree.txt │ │ │ │ ├── ScriptTag_WithNestedMalformedTag.cspans.txt │ │ │ │ ├── ScriptTag_WithNestedMalformedTag.stree.txt │ │ │ │ ├── ScriptTag_WithNestedTag.cspans.txt │ │ │ │ ├── ScriptTag_WithNestedTag.stree.txt │ │ │ │ ├── TextTags.cspans.txt │ │ │ │ ├── TextTags.stree.txt │ │ │ │ ├── VoidElementFollowedByCloseTag.cspans.txt │ │ │ │ ├── VoidElementFollowedByCloseTag.stree.txt │ │ │ │ ├── VoidElementFollowedByContent.cspans.txt │ │ │ │ ├── VoidElementFollowedByContent.stree.txt │ │ │ │ ├── VoidElementFollowedByOtherTag.cspans.txt │ │ │ │ └── VoidElementFollowedByOtherTag.stree.txt │ │ │ ├── HtmlToCodeSwitchTest │ │ │ │ ├── CSharpCodeParserDoesNotAcceptLeadingOrTrailingWhitespaceInDesignMode.cspans.txt │ │ │ │ ├── CSharpCodeParserDoesNotAcceptLeadingOrTrailingWhitespaceInDesignMode.stree.txt │ │ │ │ ├── DoesNotSwitchToCodeOnEmailAddressInAttribute.cspans.txt │ │ │ │ ├── DoesNotSwitchToCodeOnEmailAddressInAttribute.stree.txt │ │ │ │ ├── GivesWhitespacePreceedingAtToCodeIfThereIsNoMarkupOnThatLine.cspans.txt │ │ │ │ ├── GivesWhitespacePreceedingAtToCodeIfThereIsNoMarkupOnThatLine.stree.txt │ │ │ │ ├── ParseBlockDoesNotSwitchToCodeOnEmailAddressInText.cspans.txt │ │ │ │ ├── ParseBlockDoesNotSwitchToCodeOnEmailAddressInText.stree.txt │ │ │ │ ├── ParseDocumentGivesWhitespacePreceedingAtToCodeIfThereIsNoMarkupOnThatLine.cspans.txt │ │ │ │ ├── ParseDocumentGivesWhitespacePreceedingAtToCodeIfThereIsNoMarkupOnThatLine.stree.txt │ │ │ │ ├── ParseDocumentTreatsPairsOfAtSignsAsEscapeSequence.cspans.txt │ │ │ │ ├── ParseDocumentTreatsPairsOfAtSignsAsEscapeSequence.stree.txt │ │ │ │ ├── ParseDocumentTreatsTwoAtSignsAsEscapeSequence.cspans.txt │ │ │ │ ├── ParseDocumentTreatsTwoAtSignsAsEscapeSequence.stree.txt │ │ │ │ ├── ParsesCodeWithinSingleLineMarkup.cspans.txt │ │ │ │ ├── ParsesCodeWithinSingleLineMarkup.stree.txt │ │ │ │ ├── SectionBodyTreatsPairsOfAtSignsAsEscapeSequence.cspans.txt │ │ │ │ ├── SectionBodyTreatsPairsOfAtSignsAsEscapeSequence.stree.txt │ │ │ │ ├── SectionBodyTreatsTwoAtSignsAsEscapeSequence.cspans.txt │ │ │ │ ├── SectionBodyTreatsTwoAtSignsAsEscapeSequence.stree.txt │ │ │ │ ├── SectionContextGivesWhitespacePreceedingAtToCodeIfThereIsNoMarkupOnThatLine.cspans.txt │ │ │ │ ├── SectionContextGivesWhitespacePreceedingAtToCodeIfThereIsNoMarkupOnThatLine.stree.txt │ │ │ │ ├── SupportsCodeWithinCDataDeclaration.cspans.txt │ │ │ │ ├── SupportsCodeWithinCDataDeclaration.stree.txt │ │ │ │ ├── SupportsCodeWithinComment.cspans.txt │ │ │ │ ├── SupportsCodeWithinComment.stree.txt │ │ │ │ ├── SupportsCodeWithinSGMLDeclaration.cspans.txt │ │ │ │ ├── SupportsCodeWithinSGMLDeclaration.stree.txt │ │ │ │ ├── SupportsCodeWithinXMLProcessingInstruction.cspans.txt │ │ │ │ ├── SupportsCodeWithinXMLProcessingInstruction.stree.txt │ │ │ │ ├── SwitchesToCodeWhenSwapCharacterEncounteredInAttributeValue.cspans.txt │ │ │ │ ├── SwitchesToCodeWhenSwapCharacterEncounteredInAttributeValue.stree.txt │ │ │ │ ├── SwitchesToCodeWhenSwapCharacterEncounteredInTagContent.cspans.txt │ │ │ │ ├── SwitchesToCodeWhenSwapCharacterEncounteredInTagContent.stree.txt │ │ │ │ ├── SwitchesToCodeWhenSwapCharacterEncounteredMidTag.cspans.txt │ │ │ │ ├── SwitchesToCodeWhenSwapCharacterEncounteredMidTag.stree.txt │ │ │ │ ├── SwitchesWhenCharacterBeforeSwapIsNonAlphanumeric.cspans.txt │ │ │ │ ├── SwitchesWhenCharacterBeforeSwapIsNonAlphanumeric.stree.txt │ │ │ │ ├── TreatsPairsOfAtSignsAsEscapeSequence.cspans.txt │ │ │ │ ├── TreatsPairsOfAtSignsAsEscapeSequence.stree.txt │ │ │ │ ├── TreatsTwoAtSignsAsEscapeSequence.cspans.txt │ │ │ │ └── TreatsTwoAtSignsAsEscapeSequence.stree.txt │ │ │ ├── MarkupElementRewriterTest │ │ │ │ ├── Rewrites_DoesNotSpecialCase_VoidTags.cspans.txt │ │ │ │ ├── Rewrites_DoesNotSpecialCase_VoidTags.stree.txt │ │ │ │ ├── Rewrites_EndTagsWithMissingStartTags.cspans.txt │ │ │ │ ├── Rewrites_EndTagsWithMissingStartTags.stree.txt │ │ │ │ ├── Rewrites_IncompleteTags.cspans.txt │ │ │ │ ├── Rewrites_IncompleteTags.stree.txt │ │ │ │ ├── Rewrites_MalformedTags_RecoversSuccessfully.cspans.txt │ │ │ │ ├── Rewrites_MalformedTags_RecoversSuccessfully.stree.txt │ │ │ │ ├── Rewrites_MisplacedEndTags_RecoversSuccessfully.cspans.txt │ │ │ │ ├── Rewrites_MisplacedEndTags_RecoversSuccessfully.stree.txt │ │ │ │ ├── Rewrites_SelfClosingTags.cspans.txt │ │ │ │ ├── Rewrites_SelfClosingTags.stree.txt │ │ │ │ ├── Rewrites_StartTagsWithMissingEndTags.cspans.txt │ │ │ │ ├── Rewrites_StartTagsWithMissingEndTags.stree.txt │ │ │ │ ├── Rewrites_ValidNestedTags.cspans.txt │ │ │ │ ├── Rewrites_ValidNestedTags.stree.txt │ │ │ │ ├── Rewrites_ValidNestedTagsMixedWithCode.cspans.txt │ │ │ │ ├── Rewrites_ValidNestedTagsMixedWithCode.stree.txt │ │ │ │ ├── Rewrites_ValidTags.cspans.txt │ │ │ │ └── Rewrites_ValidTags.stree.txt │ │ │ ├── RazorDirectivesTest │ │ │ │ ├── AddTagHelperDirective_EndQuoteRequiresDoubleQuotesAroundValue.cspans.txt │ │ │ │ ├── AddTagHelperDirective_EndQuoteRequiresDoubleQuotesAroundValue.stree.txt │ │ │ │ ├── AddTagHelperDirective_InvalidLookupText_AddsError.cspans.txt │ │ │ │ ├── AddTagHelperDirective_InvalidLookupText_AddsError.stree.txt │ │ │ │ ├── AddTagHelperDirective_NoValue_Invalid.cspans.txt │ │ │ │ ├── AddTagHelperDirective_NoValue_Invalid.stree.txt │ │ │ │ ├── AddTagHelperDirective_RequiresValue.cspans.txt │ │ │ │ ├── AddTagHelperDirective_RequiresValue.stree.txt │ │ │ │ ├── AddTagHelperDirective_SingleQuotes_AddsError.cspans.txt │ │ │ │ ├── AddTagHelperDirective_SingleQuotes_AddsError.stree.txt │ │ │ │ ├── AddTagHelperDirective_StartQuoteRequiresDoubleQuotesAroundValue.cspans.txt │ │ │ │ ├── AddTagHelperDirective_StartQuoteRequiresDoubleQuotesAroundValue.stree.txt │ │ │ │ ├── AddTagHelperDirective_SupportsSpaces.cspans.txt │ │ │ │ ├── AddTagHelperDirective_SupportsSpaces.stree.txt │ │ │ │ ├── AddTagHelperDirective_WithQuotes_InvalidLookupText_AddsError.cspans.txt │ │ │ │ ├── AddTagHelperDirective_WithQuotes_InvalidLookupText_AddsError.stree.txt │ │ │ │ ├── BuiltInDirectiveDoesNotErorrIfNotAtStartOfLineBecauseOfWhitespace.cspans.txt │ │ │ │ ├── BuiltInDirectiveDoesNotErorrIfNotAtStartOfLineBecauseOfWhitespace.stree.txt │ │ │ │ ├── BuiltInDirectiveErrorsIfNotAtStartOfLine.cspans.txt │ │ │ │ ├── BuiltInDirectiveErrorsIfNotAtStartOfLine.stree.txt │ │ │ │ ├── DirectiveDescriptor_AllowsNullableTypes.cspans.txt │ │ │ │ ├── DirectiveDescriptor_AllowsNullableTypes.stree.txt │ │ │ │ ├── DirectiveDescriptor_AllowsTupleTypes.cspans.txt │ │ │ │ ├── DirectiveDescriptor_AllowsTupleTypes.stree.txt │ │ │ │ ├── DirectiveDescriptor_AllowsTupleTypes_IgnoresTrailingWhitespace.cspans.txt │ │ │ │ ├── DirectiveDescriptor_AllowsTupleTypes_IgnoresTrailingWhitespace.stree.txt │ │ │ │ ├── DirectiveDescriptor_AllowsWhiteSpaceAroundTokens.cspans.txt │ │ │ │ ├── DirectiveDescriptor_AllowsWhiteSpaceAroundTokens.stree.txt │ │ │ │ ├── DirectiveDescriptor_CanHandleEOFIncompleteNamespaceTokens.cspans.txt │ │ │ │ ├── DirectiveDescriptor_CanHandleEOFIncompleteNamespaceTokens.stree.txt │ │ │ │ ├── DirectiveDescriptor_CanHandleEOFInvalidNamespaceTokens.cspans.txt │ │ │ │ ├── DirectiveDescriptor_CanHandleEOFInvalidNamespaceTokens.stree.txt │ │ │ │ ├── DirectiveDescriptor_CanHandleIncompleteNamespaceTokens.cspans.txt │ │ │ │ ├── DirectiveDescriptor_CanHandleIncompleteNamespaceTokens.stree.txt │ │ │ │ ├── DirectiveDescriptor_CanHandleInvalidNamespaceTokens.cspans.txt │ │ │ │ ├── DirectiveDescriptor_CanHandleInvalidNamespaceTokens.stree.txt │ │ │ │ ├── DirectiveDescriptor_ErrorsExtraContentAfterDirective.cspans.txt │ │ │ │ ├── DirectiveDescriptor_ErrorsExtraContentAfterDirective.stree.txt │ │ │ │ ├── DirectiveDescriptor_ErrorsForInvalidMemberTokens.cspans.txt │ │ │ │ ├── DirectiveDescriptor_ErrorsForInvalidMemberTokens.stree.txt │ │ │ │ ├── DirectiveDescriptor_ErrorsWhenEOFBeforeDirectiveBlockStart.cspans.txt │ │ │ │ ├── DirectiveDescriptor_ErrorsWhenEOFBeforeDirectiveBlockStart.stree.txt │ │ │ │ ├── DirectiveDescriptor_ErrorsWhenExtraContentBeforeBlockStart.cspans.txt │ │ │ │ ├── DirectiveDescriptor_ErrorsWhenExtraContentBeforeBlockStart.stree.txt │ │ │ │ ├── DirectiveDescriptor_ErrorsWhenMissingEndBrace.cspans.txt │ │ │ │ ├── DirectiveDescriptor_ErrorsWhenMissingEndBrace.stree.txt │ │ │ │ ├── DirectiveDescriptor_FileScopedMultipleOccurring_CanHaveDuplicates.cspans.txt │ │ │ │ ├── DirectiveDescriptor_FileScopedMultipleOccurring_CanHaveDuplicates.stree.txt │ │ │ │ ├── DirectiveDescriptor_FileScopedSinglyOccurring_ErrorsIfDuplicate.cspans.txt │ │ │ │ ├── DirectiveDescriptor_FileScopedSinglyOccurring_ErrorsIfDuplicate.stree.txt │ │ │ │ ├── DirectiveDescriptor_FileScoped_CanBeBeneathOtherDirectives.cspans.txt │ │ │ │ ├── DirectiveDescriptor_FileScoped_CanBeBeneathOtherDirectives.stree.txt │ │ │ │ ├── DirectiveDescriptor_FileScoped_CanBeBeneathOtherWhiteSpaceCommentsAndDirectives.cspans.txt │ │ │ │ ├── DirectiveDescriptor_FileScoped_CanBeBeneathOtherWhiteSpaceCommentsAndDirectives.stree.txt │ │ │ │ ├── DirectiveDescriptor_NoErrorsSemicolonAfterDirective.cspans.txt │ │ │ │ ├── DirectiveDescriptor_NoErrorsSemicolonAfterDirective.stree.txt │ │ │ │ ├── DirectiveDescriptor_StringToken_ParserErrorForNonStringValue.cspans.txt │ │ │ │ ├── DirectiveDescriptor_StringToken_ParserErrorForNonStringValue.stree.txt │ │ │ │ ├── DirectiveDescriptor_StringToken_ParserErrorForPartialQuotedValue.cspans.txt │ │ │ │ ├── DirectiveDescriptor_StringToken_ParserErrorForPartialQuotedValue.stree.txt │ │ │ │ ├── DirectiveDescriptor_StringToken_ParserErrorForSingleQuotedValue.cspans.txt │ │ │ │ ├── DirectiveDescriptor_StringToken_ParserErrorForSingleQuotedValue.stree.txt │ │ │ │ ├── DirectiveDescriptor_StringToken_ParserErrorForUnquotedValue.cspans.txt │ │ │ │ ├── DirectiveDescriptor_StringToken_ParserErrorForUnquotedValue.stree.txt │ │ │ │ ├── DirectiveDescriptor_TokensMustBeSeparatedBySpace.cspans.txt │ │ │ │ ├── DirectiveDescriptor_TokensMustBeSeparatedBySpace.stree.txt │ │ │ │ ├── DirectiveDescriptor_UnderstandsCodeBlocks.cspans.txt │ │ │ │ ├── DirectiveDescriptor_UnderstandsCodeBlocks.stree.txt │ │ │ │ ├── DirectiveDescriptor_UnderstandsMemberTokens.cspans.txt │ │ │ │ ├── DirectiveDescriptor_UnderstandsMemberTokens.stree.txt │ │ │ │ ├── DirectiveDescriptor_UnderstandsMultipleTokens.cspans.txt │ │ │ │ ├── DirectiveDescriptor_UnderstandsMultipleTokens.stree.txt │ │ │ │ ├── DirectiveDescriptor_UnderstandsRazorBlocks.cspans.txt │ │ │ │ ├── DirectiveDescriptor_UnderstandsRazorBlocks.stree.txt │ │ │ │ ├── DirectiveDescriptor_UnderstandsStringTokens.cspans.txt │ │ │ │ ├── DirectiveDescriptor_UnderstandsStringTokens.stree.txt │ │ │ │ ├── DirectiveDescriptor_UnderstandsTypeTokens.cspans.txt │ │ │ │ ├── DirectiveDescriptor_UnderstandsTypeTokens.stree.txt │ │ │ │ ├── Directives_CanUseReservedWord_Class.cspans.txt │ │ │ │ ├── Directives_CanUseReservedWord_Class.stree.txt │ │ │ │ ├── Directives_CanUseReservedWord_Namespace.cspans.txt │ │ │ │ ├── Directives_CanUseReservedWord_Namespace.stree.txt │ │ │ │ ├── EmptyFunctionsDirective.cspans.txt │ │ │ │ ├── EmptyFunctionsDirective.stree.txt │ │ │ │ ├── ExtensibleDirectiveDoesNotErorrIfNotAtStartOfLineBecauseOfWhitespace.cspans.txt │ │ │ │ ├── ExtensibleDirectiveDoesNotErorrIfNotAtStartOfLineBecauseOfWhitespace.stree.txt │ │ │ │ ├── ExtensibleDirectiveErrorsIfNotAtStartOfLine.cspans.txt │ │ │ │ ├── ExtensibleDirectiveErrorsIfNotAtStartOfLine.stree.txt │ │ │ │ ├── InheritsDirectiveSupportsArrays.cspans.txt │ │ │ │ ├── InheritsDirectiveSupportsArrays.stree.txt │ │ │ │ ├── InheritsDirectiveSupportsNestedGenerics.cspans.txt │ │ │ │ ├── InheritsDirectiveSupportsNestedGenerics.stree.txt │ │ │ │ ├── InheritsDirectiveSupportsTypeKeywords.cspans.txt │ │ │ │ ├── InheritsDirectiveSupportsTypeKeywords.stree.txt │ │ │ │ ├── OptionalDirectiveTokens_AreSkipped.cspans.txt │ │ │ │ ├── OptionalDirectiveTokens_AreSkipped.stree.txt │ │ │ │ ├── OptionalDirectiveTokens_WithBraces_AreParsed.cspans.txt │ │ │ │ ├── OptionalDirectiveTokens_WithBraces_AreParsed.stree.txt │ │ │ │ ├── OptionalDirectiveTokens_WithMultipleOptionalTokens_AreParsed.cspans.txt │ │ │ │ ├── OptionalDirectiveTokens_WithMultipleOptionalTokens_AreParsed.stree.txt │ │ │ │ ├── OptionalDirectiveTokens_WithSimpleTokens_AreParsed.cspans.txt │ │ │ │ ├── OptionalDirectiveTokens_WithSimpleTokens_AreParsed.stree.txt │ │ │ │ ├── OptionalMemberTokens_WithMemberSpecified_IsParsed.cspans.txt │ │ │ │ ├── OptionalMemberTokens_WithMemberSpecified_IsParsed.stree.txt │ │ │ │ ├── OptionalMemberTokens_WithMissingMember_IsParsed.cspans.txt │ │ │ │ ├── OptionalMemberTokens_WithMissingMember_IsParsed.stree.txt │ │ │ │ ├── Parse_FunctionsDirective.cspans.txt │ │ │ │ ├── Parse_FunctionsDirective.stree.txt │ │ │ │ ├── Parse_SectionDirective.cspans.txt │ │ │ │ ├── Parse_SectionDirective.stree.txt │ │ │ │ ├── Parser_ParsesNamespaceDirectiveToken_WithMultipleSegments.cspans.txt │ │ │ │ ├── Parser_ParsesNamespaceDirectiveToken_WithMultipleSegments.stree.txt │ │ │ │ ├── Parser_ParsesNamespaceDirectiveToken_WithSingleSegment.cspans.txt │ │ │ │ ├── Parser_ParsesNamespaceDirectiveToken_WithSingleSegment.stree.txt │ │ │ │ ├── RemoveTagHelperDirective_EndQuoteRequiresDoubleQuotesAroundValue.cspans.txt │ │ │ │ ├── RemoveTagHelperDirective_EndQuoteRequiresDoubleQuotesAroundValue.stree.txt │ │ │ │ ├── RemoveTagHelperDirective_InvalidLookupText_AddsError.cspans.txt │ │ │ │ ├── RemoveTagHelperDirective_InvalidLookupText_AddsError.stree.txt │ │ │ │ ├── RemoveTagHelperDirective_NoValue_Invalid.cspans.txt │ │ │ │ ├── RemoveTagHelperDirective_NoValue_Invalid.stree.txt │ │ │ │ ├── RemoveTagHelperDirective_RequiresValue.cspans.txt │ │ │ │ ├── RemoveTagHelperDirective_RequiresValue.stree.txt │ │ │ │ ├── RemoveTagHelperDirective_SingleQuotes_AddsError.cspans.txt │ │ │ │ ├── RemoveTagHelperDirective_SingleQuotes_AddsError.stree.txt │ │ │ │ ├── RemoveTagHelperDirective_StartQuoteRequiresDoubleQuotesAroundValue.cspans.txt │ │ │ │ ├── RemoveTagHelperDirective_StartQuoteRequiresDoubleQuotesAroundValue.stree.txt │ │ │ │ ├── RemoveTagHelperDirective_SupportsSpaces.cspans.txt │ │ │ │ ├── RemoveTagHelperDirective_SupportsSpaces.stree.txt │ │ │ │ ├── RemoveTagHelperDirective_WithQuotes_InvalidLookupText_AddsError.cspans.txt │ │ │ │ ├── RemoveTagHelperDirective_WithQuotes_InvalidLookupText_AddsError.stree.txt │ │ │ │ ├── TagHelperPrefixDirective_EndQuoteRequiresDoubleQuotesAroundValue.cspans.txt │ │ │ │ ├── TagHelperPrefixDirective_EndQuoteRequiresDoubleQuotesAroundValue.stree.txt │ │ │ │ ├── TagHelperPrefixDirective_NoValueSucceeds.cspans.txt │ │ │ │ ├── TagHelperPrefixDirective_NoValueSucceeds.stree.txt │ │ │ │ ├── TagHelperPrefixDirective_RequiresValue.cspans.txt │ │ │ │ ├── TagHelperPrefixDirective_RequiresValue.stree.txt │ │ │ │ ├── TagHelperPrefixDirective_StartQuoteRequiresDoubleQuotesAroundValue.cspans.txt │ │ │ │ ├── TagHelperPrefixDirective_StartQuoteRequiresDoubleQuotesAroundValue.stree.txt │ │ │ │ ├── TagHelperPrefixDirective_Succeeds.cspans.txt │ │ │ │ ├── TagHelperPrefixDirective_Succeeds.stree.txt │ │ │ │ ├── TagHelperPrefixDirective_WithQuotes_Succeeds.cspans.txt │ │ │ │ └── TagHelperPrefixDirective_WithQuotes_Succeeds.stree.txt │ │ │ ├── TagHelperBlockRewriterTest │ │ │ │ ├── AllowsCompatibleTagStructures1.cspans.txt │ │ │ │ ├── AllowsCompatibleTagStructures1.stree.txt │ │ │ │ ├── AllowsCompatibleTagStructures1.tspans.txt │ │ │ │ ├── AllowsCompatibleTagStructures2.cspans.txt │ │ │ │ ├── AllowsCompatibleTagStructures2.stree.txt │ │ │ │ ├── AllowsCompatibleTagStructures2.tspans.txt │ │ │ │ ├── AllowsCompatibleTagStructures3.cspans.txt │ │ │ │ ├── AllowsCompatibleTagStructures3.stree.txt │ │ │ │ ├── AllowsCompatibleTagStructures3.tspans.txt │ │ │ │ ├── AllowsCompatibleTagStructures4.cspans.txt │ │ │ │ ├── AllowsCompatibleTagStructures4.stree.txt │ │ │ │ ├── AllowsCompatibleTagStructures4.tspans.txt │ │ │ │ ├── AllowsCompatibleTagStructures5.cspans.txt │ │ │ │ ├── AllowsCompatibleTagStructures5.stree.txt │ │ │ │ ├── AllowsCompatibleTagStructures5.tspans.txt │ │ │ │ ├── AllowsCompatibleTagStructures6.cspans.txt │ │ │ │ ├── AllowsCompatibleTagStructures6.stree.txt │ │ │ │ ├── AllowsCompatibleTagStructures6.tspans.txt │ │ │ │ ├── AllowsCompatibleTagStructures7.cspans.txt │ │ │ │ ├── AllowsCompatibleTagStructures7.stree.txt │ │ │ │ ├── AllowsCompatibleTagStructures7.tspans.txt │ │ │ │ ├── CanHandleSymbolBoundAttributes1.cspans.txt │ │ │ │ ├── CanHandleSymbolBoundAttributes1.diag.txt │ │ │ │ ├── CanHandleSymbolBoundAttributes1.stree.txt │ │ │ │ ├── CanHandleSymbolBoundAttributes1.tspans.txt │ │ │ │ ├── CanHandleSymbolBoundAttributes2.cspans.txt │ │ │ │ ├── CanHandleSymbolBoundAttributes2.diag.txt │ │ │ │ ├── CanHandleSymbolBoundAttributes2.stree.txt │ │ │ │ ├── CanHandleSymbolBoundAttributes2.tspans.txt │ │ │ │ ├── CanHandleSymbolBoundAttributes3.cspans.txt │ │ │ │ ├── CanHandleSymbolBoundAttributes3.diag.txt │ │ │ │ ├── CanHandleSymbolBoundAttributes3.stree.txt │ │ │ │ ├── CanHandleSymbolBoundAttributes3.tspans.txt │ │ │ │ ├── CanHandleSymbolBoundAttributes4.cspans.txt │ │ │ │ ├── CanHandleSymbolBoundAttributes4.diag.txt │ │ │ │ ├── CanHandleSymbolBoundAttributes4.stree.txt │ │ │ │ ├── CanHandleSymbolBoundAttributes4.tspans.txt │ │ │ │ ├── CanHandleSymbolBoundAttributes5.cspans.txt │ │ │ │ ├── CanHandleSymbolBoundAttributes5.diag.txt │ │ │ │ ├── CanHandleSymbolBoundAttributes5.stree.txt │ │ │ │ ├── CanHandleSymbolBoundAttributes5.tspans.txt │ │ │ │ ├── CanHandleSymbolBoundAttributes6.cspans.txt │ │ │ │ ├── CanHandleSymbolBoundAttributes6.diag.txt │ │ │ │ ├── CanHandleSymbolBoundAttributes6.stree.txt │ │ │ │ ├── CanHandleSymbolBoundAttributes6.tspans.txt │ │ │ │ ├── CanHandleSymbolBoundAttributes7.cspans.txt │ │ │ │ ├── CanHandleSymbolBoundAttributes7.diag.txt │ │ │ │ ├── CanHandleSymbolBoundAttributes7.stree.txt │ │ │ │ ├── CanHandleSymbolBoundAttributes7.tspans.txt │ │ │ │ ├── CanHandleWithoutEndTagTagStructure1.cspans.txt │ │ │ │ ├── CanHandleWithoutEndTagTagStructure1.stree.txt │ │ │ │ ├── CanHandleWithoutEndTagTagStructure1.tspans.txt │ │ │ │ ├── CanHandleWithoutEndTagTagStructure2.cspans.txt │ │ │ │ ├── CanHandleWithoutEndTagTagStructure2.stree.txt │ │ │ │ ├── CanHandleWithoutEndTagTagStructure2.tspans.txt │ │ │ │ ├── CanHandleWithoutEndTagTagStructure3.cspans.txt │ │ │ │ ├── CanHandleWithoutEndTagTagStructure3.stree.txt │ │ │ │ ├── CanHandleWithoutEndTagTagStructure3.tspans.txt │ │ │ │ ├── CanHandleWithoutEndTagTagStructure4.cspans.txt │ │ │ │ ├── CanHandleWithoutEndTagTagStructure4.stree.txt │ │ │ │ ├── CanHandleWithoutEndTagTagStructure4.tspans.txt │ │ │ │ ├── CanHandleWithoutEndTagTagStructure5.cspans.txt │ │ │ │ ├── CanHandleWithoutEndTagTagStructure5.stree.txt │ │ │ │ ├── CanHandleWithoutEndTagTagStructure5.tspans.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes1.cspans.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes1.diag.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes1.stree.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes1.tspans.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes10.cspans.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes10.diag.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes10.stree.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes10.tspans.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes11.cspans.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes11.diag.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes11.stree.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes11.tspans.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes12.cspans.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes12.diag.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes12.stree.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes12.tspans.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes13.cspans.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes13.stree.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes13.tspans.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes14.cspans.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes14.stree.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes14.tspans.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes2.cspans.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes2.stree.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes2.tspans.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes3.cspans.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes3.diag.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes3.stree.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes3.tspans.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes4.cspans.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes4.diag.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes4.stree.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes4.tspans.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes5.cspans.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes5.diag.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes5.stree.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes5.tspans.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes6.cspans.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes6.diag.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes6.stree.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes6.tspans.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes7.cspans.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes7.diag.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes7.stree.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes7.tspans.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes8.cspans.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes8.diag.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes8.stree.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes8.tspans.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes9.cspans.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes9.diag.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes9.stree.txt │ │ │ │ ├── CreatesErrorForEmptyTagHelperBoundAttributes9.tspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelper1.cspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelper1.diag.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelper1.stree.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelper1.tspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelper2.cspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelper2.diag.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelper2.stree.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelper2.tspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelper3.cspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelper3.diag.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelper3.stree.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelper3.tspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelper4.cspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelper4.diag.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelper4.stree.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelper4.tspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelper5.cspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelper5.diag.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelper5.stree.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelper5.tspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelper6.cspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelper6.diag.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelper6.stree.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelper6.tspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelper7.cspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelper7.diag.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelper7.stree.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelper7.tspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelper8.cspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelper8.diag.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelper8.stree.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelper8.tspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes1.cspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes1.diag.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes1.stree.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes1.tspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes10.cspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes10.diag.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes10.stree.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes10.tspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes11.cspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes11.diag.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes11.stree.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes11.tspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes12.cspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes12.stree.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes12.tspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes13.cspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes13.diag.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes13.stree.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes13.tspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes14.cspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes14.diag.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes14.stree.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes14.tspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes15.cspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes15.diag.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes15.stree.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes15.tspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes16.cspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes16.diag.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes16.stree.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes16.tspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes17.cspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes17.diag.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes17.stree.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes17.tspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes18.cspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes18.diag.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes18.stree.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes18.tspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes19.cspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes19.diag.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes19.stree.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes19.tspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes2.cspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes2.diag.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes2.stree.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes2.tspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes3.cspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes3.diag.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes3.stree.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes3.tspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes4.cspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes4.diag.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes4.stree.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes4.tspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes5.cspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes5.diag.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes5.stree.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes5.tspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes6.cspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes6.diag.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes6.stree.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes6.tspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes7.cspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes7.diag.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes7.stree.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes7.tspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes8.cspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes8.diag.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes8.stree.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes8.tspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes9.cspans.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes9.diag.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes9.stree.txt │ │ │ │ ├── CreatesErrorForMalformedTagHelpersWithAttributes9.tspans.txt │ │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes1.cspans.txt │ │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes1.stree.txt │ │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes1.tspans.txt │ │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes10.cspans.txt │ │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes10.stree.txt │ │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes10.tspans.txt │ │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes11.cspans.txt │ │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes11.stree.txt │ │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes11.tspans.txt │ │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes2.cspans.txt │ │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes2.stree.txt │ │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes2.tspans.txt │ │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes3.cspans.txt │ │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes3.stree.txt │ │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes3.tspans.txt │ │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes4.cspans.txt │ │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes4.stree.txt │ │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes4.tspans.txt │ │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes5.cspans.txt │ │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes5.stree.txt │ │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes5.tspans.txt │ │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes6.cspans.txt │ │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes6.stree.txt │ │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes6.tspans.txt │ │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes7.cspans.txt │ │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes7.stree.txt │ │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes7.tspans.txt │ │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes8.cspans.txt │ │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes8.stree.txt │ │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes8.tspans.txt │ │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes9.cspans.txt │ │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes9.stree.txt │ │ │ │ ├── CreatesMarkupCodeSpansForNonStringTagHelperAttributes9.tspans.txt │ │ │ │ ├── FeatureDisabled_AddsErrorForMinimizedBooleanBoundAttributes.cspans.txt │ │ │ │ ├── FeatureDisabled_AddsErrorForMinimizedBooleanBoundAttributes.diag.txt │ │ │ │ ├── FeatureDisabled_AddsErrorForMinimizedBooleanBoundAttributes.stree.txt │ │ │ │ ├── FeatureDisabled_AddsErrorForMinimizedBooleanBoundAttributes.tspans.txt │ │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Block1.cspans.txt │ │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Block1.stree.txt │ │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Block1.tspans.txt │ │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Block2.cspans.txt │ │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Block2.stree.txt │ │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Block2.tspans.txt │ │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Block3.cspans.txt │ │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Block3.stree.txt │ │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Block3.tspans.txt │ │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Block4.cspans.txt │ │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Block4.stree.txt │ │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Block4.tspans.txt │ │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Block5.cspans.txt │ │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Block5.stree.txt │ │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Block5.tspans.txt │ │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Block6.cspans.txt │ │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Block6.stree.txt │ │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Block6.tspans.txt │ │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Block7.cspans.txt │ │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Block7.stree.txt │ │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Block7.tspans.txt │ │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Document1.cspans.txt │ │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Document1.stree.txt │ │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Document1.tspans.txt │ │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Document2.cspans.txt │ │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Document2.stree.txt │ │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Document2.tspans.txt │ │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Document3.cspans.txt │ │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Document3.stree.txt │ │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Document3.tspans.txt │ │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Document4.cspans.txt │ │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Document4.stree.txt │ │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Document4.tspans.txt │ │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Document5.cspans.txt │ │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Document5.stree.txt │ │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Document5.tspans.txt │ │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Document6.cspans.txt │ │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Document6.stree.txt │ │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Document6.tspans.txt │ │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Document7.cspans.txt │ │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Document7.stree.txt │ │ │ │ ├── GeneratesExpectedOutputForUnboundDataDashAttributes_Document7.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml1.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml1.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml1.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml10.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml10.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml10.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml2.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml2.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml2.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml3.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml3.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml4.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml4.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml4.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml5.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml5.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml5.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml6.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml6.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml6.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml7.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml7.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml7.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml8.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml8.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml8.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml9.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml9.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_AllowsInvalidHtml9.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_CreatesErrorForIncompleteTagHelper1.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_CreatesErrorForIncompleteTagHelper1.diag.txt │ │ │ │ ├── TagHelperParseTreeRewriter_CreatesErrorForIncompleteTagHelper1.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_CreatesErrorForIncompleteTagHelper1.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_CreatesErrorForIncompleteTagHelper2.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_CreatesErrorForIncompleteTagHelper2.diag.txt │ │ │ │ ├── TagHelperParseTreeRewriter_CreatesErrorForIncompleteTagHelper2.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_CreatesErrorForIncompleteTagHelper2.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_CreatesErrorForIncompleteTagHelper3.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_CreatesErrorForIncompleteTagHelper3.diag.txt │ │ │ │ ├── TagHelperParseTreeRewriter_CreatesErrorForIncompleteTagHelper3.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_CreatesErrorForIncompleteTagHelper3.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_CreatesErrorForIncompleteTagHelper4.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_CreatesErrorForIncompleteTagHelper4.diag.txt │ │ │ │ ├── TagHelperParseTreeRewriter_CreatesErrorForIncompleteTagHelper4.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_CreatesErrorForIncompleteTagHelper4.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexAttributeTagHelperTagBlocks1.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexAttributeTagHelperTagBlocks1.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexAttributeTagHelperTagBlocks1.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexAttributeTagHelperTagBlocks2.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexAttributeTagHelperTagBlocks2.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexAttributeTagHelperTagBlocks2.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexAttributeTagHelperTagBlocks3.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexAttributeTagHelperTagBlocks3.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexAttributeTagHelperTagBlocks3.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexAttributeTagHelperTagBlocks4.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexAttributeTagHelperTagBlocks4.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexAttributeTagHelperTagBlocks4.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexAttributeTagHelperTagBlocks5.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexAttributeTagHelperTagBlocks5.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexAttributeTagHelperTagBlocks5.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexAttributeTagHelperTagBlocks6.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexAttributeTagHelperTagBlocks6.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexAttributeTagHelperTagBlocks6.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexAttributeTagHelperTagBlocks7.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexAttributeTagHelperTagBlocks7.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexAttributeTagHelperTagBlocks7.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks1.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks1.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks1.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks2.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks2.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks2.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks3.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks3.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks3.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks4.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks4.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks4.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks5.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks5.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks5.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks6.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks6.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks6.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks7.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks7.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks7.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks8.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks8.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesComplexTagHelperTagBlocks8.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesOddlySpacedTagHelperTagBlocks1.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesOddlySpacedTagHelperTagBlocks1.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesOddlySpacedTagHelperTagBlocks1.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesOddlySpacedTagHelperTagBlocks2.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesOddlySpacedTagHelperTagBlocks2.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesOddlySpacedTagHelperTagBlocks2.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesOddlySpacedTagHelperTagBlocks3.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesOddlySpacedTagHelperTagBlocks3.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesOddlySpacedTagHelperTagBlocks3.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesPlainTagHelperTagBlocks1.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesPlainTagHelperTagBlocks1.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesPlainTagHelperTagBlocks1.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesPlainTagHelperTagBlocks2.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesPlainTagHelperTagBlocks2.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesPlainTagHelperTagBlocks2.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesPlainTagHelperTagBlocks3.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesPlainTagHelperTagBlocks3.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesPlainTagHelperTagBlocks3.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesPlainTagHelperTagBlocks4.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesPlainTagHelperTagBlocks4.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesPlainTagHelperTagBlocks4.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesScriptTagHelpers1.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesScriptTagHelpers1.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesScriptTagHelpers1.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesScriptTagHelpers2.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesScriptTagHelpers2.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesScriptTagHelpers2.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesScriptTagHelpers3.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesScriptTagHelpers3.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesScriptTagHelpers3.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesScriptTagHelpers4.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesScriptTagHelpers4.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesScriptTagHelpers4.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesScriptTagHelpers5.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesScriptTagHelpers5.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesScriptTagHelpers5.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesScriptTagHelpers6.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesScriptTagHelpers6.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesScriptTagHelpers6.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesScriptTagHelpers7.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesScriptTagHelpers7.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesScriptTagHelpers7.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesSelfClosingTagHelpers1.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesSelfClosingTagHelpers1.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesSelfClosingTagHelpers1.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesSelfClosingTagHelpers2.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesSelfClosingTagHelpers2.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesSelfClosingTagHelpers2.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesSelfClosingTagHelpers3.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesSelfClosingTagHelpers3.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesSelfClosingTagHelpers3.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithPlainAttributes1.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithPlainAttributes1.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithPlainAttributes1.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithPlainAttributes2.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithPlainAttributes2.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithPlainAttributes2.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithPlainAttributes3.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithPlainAttributes3.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithPlainAttributes3.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithPlainAttributes4.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithPlainAttributes4.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithPlainAttributes4.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithQuotelessAttributes1.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithQuotelessAttributes1.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithQuotelessAttributes1.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithQuotelessAttributes2.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithQuotelessAttributes2.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithQuotelessAttributes2.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithQuotelessAttributes3.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithQuotelessAttributes3.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithQuotelessAttributes3.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithQuotelessAttributes4.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithQuotelessAttributes4.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithQuotelessAttributes4.tspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithQuotelessAttributes5.cspans.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithQuotelessAttributes5.stree.txt │ │ │ │ ├── TagHelperParseTreeRewriter_RewritesTagHelpersWithQuotelessAttributes5.tspans.txt │ │ │ │ ├── UnderstandsEmptyAttributeTagHelpers1.cspans.txt │ │ │ │ ├── UnderstandsEmptyAttributeTagHelpers1.stree.txt │ │ │ │ ├── UnderstandsEmptyAttributeTagHelpers1.tspans.txt │ │ │ │ ├── UnderstandsEmptyAttributeTagHelpers2.cspans.txt │ │ │ │ ├── UnderstandsEmptyAttributeTagHelpers2.stree.txt │ │ │ │ ├── UnderstandsEmptyAttributeTagHelpers2.tspans.txt │ │ │ │ ├── UnderstandsEmptyAttributeTagHelpers3.cspans.txt │ │ │ │ ├── UnderstandsEmptyAttributeTagHelpers3.stree.txt │ │ │ │ ├── UnderstandsEmptyAttributeTagHelpers3.tspans.txt │ │ │ │ ├── UnderstandsEmptyAttributeTagHelpers4.cspans.txt │ │ │ │ ├── UnderstandsEmptyAttributeTagHelpers4.stree.txt │ │ │ │ ├── UnderstandsEmptyAttributeTagHelpers4.tspans.txt │ │ │ │ ├── UnderstandsEmptyAttributeTagHelpers5.cspans.txt │ │ │ │ ├── UnderstandsEmptyAttributeTagHelpers5.stree.txt │ │ │ │ ├── UnderstandsEmptyAttributeTagHelpers5.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block1.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block1.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block1.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block10.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block10.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block10.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block10.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block11.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block11.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block11.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block11.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block12.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block12.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block12.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block12.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block13.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block13.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block13.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block14.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block14.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block14.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block15.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block15.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block15.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block16.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block16.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block16.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block16.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block17.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block17.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block17.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block17.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block18.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block18.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block18.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block18.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block19.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block19.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block19.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block19.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block2.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block2.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block2.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block2.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block20.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block20.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block20.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block21.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block21.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block21.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block21.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block22.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block22.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block22.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block23.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block23.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block23.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block23.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block24.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block24.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block24.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block24.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block25.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block25.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block25.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block25.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block26.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block26.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block26.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block26.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block27.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block27.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block27.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block27.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block28.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block28.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block28.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block28.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block29.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block29.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block29.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block29.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block3.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block3.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block3.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block3.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block30.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block30.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block30.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block30.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block31.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block31.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block31.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block31.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block32.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block32.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block32.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block32.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block33.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block33.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block33.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block33.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block4.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block4.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block4.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block4.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block5.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block5.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block5.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block5.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block6.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block6.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block6.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block6.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block7.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block7.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block7.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block7.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block8.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block8.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block8.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block8.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block9.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block9.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block9.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Block9.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document1.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document1.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document1.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document10.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document10.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document10.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document10.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document11.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document11.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document11.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document11.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document12.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document12.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document12.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document12.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document13.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document13.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document13.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document14.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document14.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document14.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document15.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document15.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document15.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document16.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document16.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document16.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document16.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document17.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document17.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document17.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document17.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document18.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document18.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document18.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document18.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document19.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document19.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document19.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document19.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document2.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document2.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document2.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document2.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document20.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document20.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document20.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document21.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document21.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document21.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document21.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document22.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document22.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document22.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document23.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document23.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document23.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document23.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document24.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document24.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document24.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document24.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document25.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document25.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document25.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document25.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document26.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document26.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document26.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document26.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document27.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document27.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document27.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document27.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document28.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document28.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document28.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document28.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document29.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document29.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document29.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document29.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document3.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document3.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document3.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document3.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document30.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document30.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document30.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document30.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document31.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document31.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document31.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document31.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document32.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document32.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document32.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document32.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document33.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document33.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document33.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document33.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document4.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document4.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document4.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document4.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document5.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document5.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document5.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document5.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document6.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document6.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document6.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document6.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document7.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document7.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document7.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document7.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document8.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document8.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document8.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document8.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document9.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document9.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document9.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_Document9.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags1.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags1.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags1.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags1.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags2.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags2.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags2.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags2.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags3.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags3.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags3.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags3.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags4.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags4.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags4.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags4.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags5.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags5.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags5.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags5.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags6.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags6.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags6.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags6.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags7.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags7.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags7.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags7.tspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags8.cspans.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags8.diag.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags8.stree.txt │ │ │ │ ├── UnderstandsMinimizedAttributes_PartialTags8.tspans.txt │ │ │ │ ├── UnderstandsMinimizedBooleanBoundAttributes.cspans.txt │ │ │ │ ├── UnderstandsMinimizedBooleanBoundAttributes.stree.txt │ │ │ │ └── UnderstandsMinimizedBooleanBoundAttributes.tspans.txt │ │ │ ├── TagHelperParseTreeRewriterTest │ │ │ │ ├── AllowsPrefixedTagHelpers1.cspans.txt │ │ │ │ ├── AllowsPrefixedTagHelpers1.stree.txt │ │ │ │ ├── AllowsPrefixedTagHelpers10.cspans.txt │ │ │ │ ├── AllowsPrefixedTagHelpers10.stree.txt │ │ │ │ ├── AllowsPrefixedTagHelpers10.tspans.txt │ │ │ │ ├── AllowsPrefixedTagHelpers11.cspans.txt │ │ │ │ ├── AllowsPrefixedTagHelpers11.stree.txt │ │ │ │ ├── AllowsPrefixedTagHelpers11.tspans.txt │ │ │ │ ├── AllowsPrefixedTagHelpers2.cspans.txt │ │ │ │ ├── AllowsPrefixedTagHelpers2.stree.txt │ │ │ │ ├── AllowsPrefixedTagHelpers3.cspans.txt │ │ │ │ ├── AllowsPrefixedTagHelpers3.stree.txt │ │ │ │ ├── AllowsPrefixedTagHelpers3.tspans.txt │ │ │ │ ├── AllowsPrefixedTagHelpers4.cspans.txt │ │ │ │ ├── AllowsPrefixedTagHelpers4.stree.txt │ │ │ │ ├── AllowsPrefixedTagHelpers4.tspans.txt │ │ │ │ ├── AllowsPrefixedTagHelpers5.cspans.txt │ │ │ │ ├── AllowsPrefixedTagHelpers5.stree.txt │ │ │ │ ├── AllowsPrefixedTagHelpers5.tspans.txt │ │ │ │ ├── AllowsPrefixedTagHelpers6.cspans.txt │ │ │ │ ├── AllowsPrefixedTagHelpers6.stree.txt │ │ │ │ ├── AllowsPrefixedTagHelpers7.cspans.txt │ │ │ │ ├── AllowsPrefixedTagHelpers7.stree.txt │ │ │ │ ├── AllowsPrefixedTagHelpers8.cspans.txt │ │ │ │ ├── AllowsPrefixedTagHelpers8.stree.txt │ │ │ │ ├── AllowsPrefixedTagHelpers8.tspans.txt │ │ │ │ ├── AllowsPrefixedTagHelpers9.cspans.txt │ │ │ │ ├── AllowsPrefixedTagHelpers9.stree.txt │ │ │ │ ├── AllowsPrefixedTagHelpers9.tspans.txt │ │ │ │ ├── AllowsRazorCommentsAsChildren.cspans.txt │ │ │ │ ├── AllowsRazorCommentsAsChildren.stree.txt │ │ │ │ ├── AllowsRazorCommentsAsChildren.tspans.txt │ │ │ │ ├── AllowsRazorMarkupInHtmlComment.cspans.txt │ │ │ │ ├── AllowsRazorMarkupInHtmlComment.stree.txt │ │ │ │ ├── AllowsRazorMarkupInHtmlComment.tspans.txt │ │ │ │ ├── AllowsSimpleHtmlCommentsAsChildren.cspans.txt │ │ │ │ ├── AllowsSimpleHtmlCommentsAsChildren.stree.txt │ │ │ │ ├── AllowsSimpleHtmlCommentsAsChildren.tspans.txt │ │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithAttrTextTag1.cspans.txt │ │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithAttrTextTag1.diag.txt │ │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithAttrTextTag1.stree.txt │ │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithAttrTextTag2.cspans.txt │ │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithAttrTextTag2.stree.txt │ │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithAttrTextTag3.cspans.txt │ │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithAttrTextTag3.stree.txt │ │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithAttrTextTag4.cspans.txt │ │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithAttrTextTag4.stree.txt │ │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithAttrTextTag5.cspans.txt │ │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithAttrTextTag5.stree.txt │ │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag1.cspans.txt │ │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag1.diag.txt │ │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag1.stree.txt │ │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag2.cspans.txt │ │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag2.diag.txt │ │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag2.stree.txt │ │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag3.cspans.txt │ │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag3.stree.txt │ │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag4.cspans.txt │ │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag4.stree.txt │ │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag5.cspans.txt │ │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag5.diag.txt │ │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag5.stree.txt │ │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag6.cspans.txt │ │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag6.diag.txt │ │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag6.stree.txt │ │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag7.cspans.txt │ │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag7.stree.txt │ │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag7.tspans.txt │ │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag8.cspans.txt │ │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag8.diag.txt │ │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag8.stree.txt │ │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag9.cspans.txt │ │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag9.diag.txt │ │ │ │ ├── AllowsTHElementOptForCompleteTextTagInCSharpBlock_WithBlockTextTag9.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTML1.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTML1.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTML2.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTML2.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTML3.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTML3.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTML4.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTML4.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTML5.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTML5.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTML6.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTML6.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTML7.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTML7.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock1.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock1.diag.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock1.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock2.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock2.diag.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock2.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock3.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock3.diag.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock3.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock4.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock4.diag.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock4.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock5.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock5.diag.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock5.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock6.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock6.diag.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock6.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock7.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock7.diag.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock7.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock8.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock8.diag.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteHTMLInCSharpBlock8.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteTextTagInCSharpBlock1.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteTextTagInCSharpBlock1.diag.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteTextTagInCSharpBlock1.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteTextTagInCSharpBlock2.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteTextTagInCSharpBlock2.diag.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteTextTagInCSharpBlock2.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteTextTagInCSharpBlock3.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteTextTagInCSharpBlock3.diag.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteTextTagInCSharpBlock3.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteTextTagInCSharpBlock4.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteTextTagInCSharpBlock4.diag.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteTextTagInCSharpBlock4.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteTextTagInCSharpBlock5.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteTextTagInCSharpBlock5.diag.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteTextTagInCSharpBlock5.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteTextTagInCSharpBlock6.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteTextTagInCSharpBlock6.diag.txt │ │ │ │ ├── AllowsTagHelperElementOptForIncompleteTextTagInCSharpBlock6.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithAttributeData1.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithAttributeData1.diag.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithAttributeData1.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithAttributeData2.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithAttributeData2.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithAttributeData3.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithAttributeData3.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithAttributeData4.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithAttributeData4.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithAttributeData5.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithAttributeData5.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData1.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData1.diag.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData1.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData10.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData10.diag.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData10.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData10.tspans.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData11.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData11.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData11.tspans.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData12.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData12.diag.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData12.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData12.tspans.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData2.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData2.diag.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData2.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData3.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData3.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData4.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData4.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData5.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData5.diag.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData5.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData6.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData6.diag.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData6.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData6.tspans.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData7.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData7.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData7.tspans.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData8.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData8.diag.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData8.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData8.tspans.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData9.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData9.diag.txt │ │ │ │ ├── AllowsTagHelperElementOptOutCSharp_WithBlockData9.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithAttributeData1.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithAttributeData1.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithAttributeData2.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithAttributeData2.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithAttributeData3.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithAttributeData3.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithAttributeData4.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithAttributeData4.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithAttributeData5.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithAttributeData5.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData1.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData1.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData10.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData10.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData10.tspans.txt │ │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData11.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData11.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData11.tspans.txt │ │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData12.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData12.diag.txt │ │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData12.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData12.tspans.txt │ │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData2.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData2.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData3.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData3.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData4.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData4.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData5.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData5.diag.txt │ │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData5.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData6.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData6.diag.txt │ │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData6.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData6.tspans.txt │ │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData7.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData7.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData7.tspans.txt │ │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData8.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData8.diag.txt │ │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData8.stree.txt │ │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData8.tspans.txt │ │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData9.cspans.txt │ │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData9.diag.txt │ │ │ │ ├── AllowsTagHelperElementOptOutHTML_WithBlockData9.stree.txt │ │ │ │ ├── CanHandleInvalidChildrenWithWhitespace.cspans.txt │ │ │ │ ├── CanHandleInvalidChildrenWithWhitespace.diag.txt │ │ │ │ ├── CanHandleInvalidChildrenWithWhitespace.stree.txt │ │ │ │ ├── CanHandleInvalidChildrenWithWhitespace.tspans.txt │ │ │ │ ├── CanHandleMultipleTagHelpersWithAllowedChildren.cspans.txt │ │ │ │ ├── CanHandleMultipleTagHelpersWithAllowedChildren.stree.txt │ │ │ │ ├── CanHandleMultipleTagHelpersWithAllowedChildren.tspans.txt │ │ │ │ ├── CanHandleMultipleTagHelpersWithAllowedChildren_OneNull.cspans.txt │ │ │ │ ├── CanHandleMultipleTagHelpersWithAllowedChildren_OneNull.stree.txt │ │ │ │ ├── CanHandleMultipleTagHelpersWithAllowedChildren_OneNull.tspans.txt │ │ │ │ ├── CanHandleStartTagOnlyTagTagMode.cspans.txt │ │ │ │ ├── CanHandleStartTagOnlyTagTagMode.stree.txt │ │ │ │ ├── CanHandleStartTagOnlyTagTagMode.tspans.txt │ │ │ │ ├── CreatesErrorForInconsistentTagStructures.cspans.txt │ │ │ │ ├── CreatesErrorForInconsistentTagStructures.diag.txt │ │ │ │ ├── CreatesErrorForInconsistentTagStructures.stree.txt │ │ │ │ ├── CreatesErrorForInconsistentTagStructures.tspans.txt │ │ │ │ ├── CreatesErrorForWithoutEndTagTagStructureForEndTags.cspans.txt │ │ │ │ ├── CreatesErrorForWithoutEndTagTagStructureForEndTags.diag.txt │ │ │ │ ├── CreatesErrorForWithoutEndTagTagStructureForEndTags.stree.txt │ │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers1.cspans.txt │ │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers1.diag.txt │ │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers1.stree.txt │ │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers2.cspans.txt │ │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers2.diag.txt │ │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers2.stree.txt │ │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers3.cspans.txt │ │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers3.diag.txt │ │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers3.stree.txt │ │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers4.cspans.txt │ │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers4.diag.txt │ │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers4.stree.txt │ │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers5.cspans.txt │ │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers5.diag.txt │ │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers5.stree.txt │ │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers6.cspans.txt │ │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers6.diag.txt │ │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers6.stree.txt │ │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers7.cspans.txt │ │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers7.diag.txt │ │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers7.stree.txt │ │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers8.cspans.txt │ │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers8.diag.txt │ │ │ │ ├── DoesNotRewriteSpecialTagTagHelpers8.stree.txt │ │ │ │ ├── DoesNotRewriteTextTagTransitionTagHelpers1.cspans.txt │ │ │ │ ├── DoesNotRewriteTextTagTransitionTagHelpers1.stree.txt │ │ │ │ ├── DoesNotRewriteTextTagTransitionTagHelpers1.tspans.txt │ │ │ │ ├── DoesNotRewriteTextTagTransitionTagHelpers2.cspans.txt │ │ │ │ ├── DoesNotRewriteTextTagTransitionTagHelpers2.stree.txt │ │ │ │ ├── DoesNotRewriteTextTagTransitionTagHelpers3.cspans.txt │ │ │ │ ├── DoesNotRewriteTextTagTransitionTagHelpers3.stree.txt │ │ │ │ ├── DoesNotRewriteTextTagTransitionTagHelpers3.tspans.txt │ │ │ │ ├── DoesNotRewriteTextTagTransitionTagHelpers4.cspans.txt │ │ │ │ ├── DoesNotRewriteTextTagTransitionTagHelpers4.stree.txt │ │ │ │ ├── DoesNotRewriteTextTagTransitionTagHelpers4.tspans.txt │ │ │ │ ├── DoesNotUnderstandTagHelpersInInvalidHtmlTypedScriptTags1.cspans.txt │ │ │ │ ├── DoesNotUnderstandTagHelpersInInvalidHtmlTypedScriptTags1.stree.txt │ │ │ │ ├── DoesNotUnderstandTagHelpersInInvalidHtmlTypedScriptTags2.cspans.txt │ │ │ │ ├── DoesNotUnderstandTagHelpersInInvalidHtmlTypedScriptTags2.stree.txt │ │ │ │ ├── DoesNotUnderstandTagHelpersInInvalidHtmlTypedScriptTags3.cspans.txt │ │ │ │ ├── DoesNotUnderstandTagHelpersInInvalidHtmlTypedScriptTags3.stree.txt │ │ │ │ ├── DoesNotUnderstandTagHelpersInInvalidHtmlTypedScriptTags4.cspans.txt │ │ │ │ ├── DoesNotUnderstandTagHelpersInInvalidHtmlTypedScriptTags4.stree.txt │ │ │ │ ├── DoesntAllowSimpleHtmlCommentsAsChildrenWhenFeatureFlagIsOff.cspans.txt │ │ │ │ ├── DoesntAllowSimpleHtmlCommentsAsChildrenWhenFeatureFlagIsOff.diag.txt │ │ │ │ ├── DoesntAllowSimpleHtmlCommentsAsChildrenWhenFeatureFlagIsOff.stree.txt │ │ │ │ ├── DoesntAllowSimpleHtmlCommentsAsChildrenWhenFeatureFlagIsOff.tspans.txt │ │ │ │ ├── FailsForContentWithCommentsAsChildren.cspans.txt │ │ │ │ ├── FailsForContentWithCommentsAsChildren.diag.txt │ │ │ │ ├── FailsForContentWithCommentsAsChildren.stree.txt │ │ │ │ ├── FailsForContentWithCommentsAsChildren.tspans.txt │ │ │ │ ├── HandlesMalformedNestedNonTagHelperTags_Correctly.cspans.txt │ │ │ │ ├── HandlesMalformedNestedNonTagHelperTags_Correctly.diag.txt │ │ │ │ ├── HandlesMalformedNestedNonTagHelperTags_Correctly.stree.txt │ │ │ │ ├── InvalidStructure_UnderstandsTHPrefixAndAllowedChildrenAndRequireParent.cspans.txt │ │ │ │ ├── InvalidStructure_UnderstandsTHPrefixAndAllowedChildrenAndRequireParent.diag.txt │ │ │ │ ├── InvalidStructure_UnderstandsTHPrefixAndAllowedChildrenAndRequireParent.stree.txt │ │ │ │ ├── InvalidStructure_UnderstandsTHPrefixAndAllowedChildrenAndRequireParent.tspans.txt │ │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly1.cspans.txt │ │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly1.stree.txt │ │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly1.tspans.txt │ │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly10.cspans.txt │ │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly10.stree.txt │ │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly10.tspans.txt │ │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly2.cspans.txt │ │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly2.stree.txt │ │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly2.tspans.txt │ │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly3.cspans.txt │ │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly3.stree.txt │ │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly3.tspans.txt │ │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly4.cspans.txt │ │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly4.stree.txt │ │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly4.tspans.txt │ │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly5.cspans.txt │ │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly5.stree.txt │ │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly5.tspans.txt │ │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly6.cspans.txt │ │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly6.stree.txt │ │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly6.tspans.txt │ │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly7.cspans.txt │ │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly7.stree.txt │ │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly7.tspans.txt │ │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly8.cspans.txt │ │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly8.stree.txt │ │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly8.tspans.txt │ │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly9.cspans.txt │ │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly9.stree.txt │ │ │ │ ├── NestedRequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly9.tspans.txt │ │ │ │ ├── NonTagHelperChild_UnderstandsTagHelperPrefixAndAllowedChildren.cspans.txt │ │ │ │ ├── NonTagHelperChild_UnderstandsTagHelperPrefixAndAllowedChildren.stree.txt │ │ │ │ ├── NonTagHelperChild_UnderstandsTagHelperPrefixAndAllowedChildren.tspans.txt │ │ │ │ ├── RecoversWhenRequiredAttributeMismatchAndRestrictedChildren.cspans.txt │ │ │ │ ├── RecoversWhenRequiredAttributeMismatchAndRestrictedChildren.diag.txt │ │ │ │ ├── RecoversWhenRequiredAttributeMismatchAndRestrictedChildren.stree.txt │ │ │ │ ├── RecoversWhenRequiredAttributeMismatchAndRestrictedChildren.tspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly1.cspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly1.stree.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly10.cspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly10.diag.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly10.stree.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly10.tspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly2.cspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly2.diag.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly2.stree.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly2.tspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly3.cspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly3.diag.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly3.stree.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly3.tspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly4.cspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly4.stree.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly5.cspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly5.diag.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly5.stree.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly5.tspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly6.cspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly6.diag.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly6.stree.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly6.tspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly7.cspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly7.diag.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly7.stree.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly7.tspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly8.cspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly8.diag.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly8.stree.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly8.tspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly9.cspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly9.diag.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly9.stree.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateMalformedTagHelperBlocksCorrectly9.tspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly1.cspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly1.stree.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly10.cspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly10.stree.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly10.tspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly11.cspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly11.stree.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly11.tspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly12.cspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly12.stree.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly12.tspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly13.cspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly13.stree.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly13.tspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly14.cspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly14.stree.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly15.cspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly15.stree.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly16.cspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly16.stree.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly16.tspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly17.cspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly17.stree.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly17.tspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly18.cspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly18.stree.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly18.tspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly19.cspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly19.stree.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly19.tspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly2.cspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly2.stree.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly20.cspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly20.stree.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly20.tspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly21.cspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly21.stree.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly21.tspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly22.cspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly22.stree.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly22.tspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly23.cspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly23.stree.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly23.tspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly24.cspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly24.stree.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly24.tspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly25.cspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly25.stree.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly25.tspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly26.cspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly26.stree.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly26.tspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly27.cspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly27.stree.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly27.tspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly28.cspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly28.stree.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly28.tspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly29.cspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly29.stree.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly29.tspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly3.cspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly3.stree.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly30.cspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly30.stree.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly30.tspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly4.cspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly4.stree.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly5.cspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly5.stree.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly5.tspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly6.cspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly6.stree.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly6.tspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly7.cspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly7.stree.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly7.tspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly8.cspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly8.stree.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly8.tspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly9.cspans.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly9.stree.txt │ │ │ │ ├── RequiredAttributeDescriptorsCreateTagHelperBlocksCorrectly9.tspans.txt │ │ │ │ ├── RewritesNestedTagHelperTagBlocks1.cspans.txt │ │ │ │ ├── RewritesNestedTagHelperTagBlocks1.stree.txt │ │ │ │ ├── RewritesNestedTagHelperTagBlocks1.tspans.txt │ │ │ │ ├── RewritesNestedTagHelperTagBlocks2.cspans.txt │ │ │ │ ├── RewritesNestedTagHelperTagBlocks2.stree.txt │ │ │ │ ├── RewritesNestedTagHelperTagBlocks2.tspans.txt │ │ │ │ ├── RewritesNestedTagHelperTagBlocks3.cspans.txt │ │ │ │ ├── RewritesNestedTagHelperTagBlocks3.stree.txt │ │ │ │ ├── RewritesNestedTagHelperTagBlocks3.tspans.txt │ │ │ │ ├── RewritesNestedTagHelperTagBlocks4.cspans.txt │ │ │ │ ├── RewritesNestedTagHelperTagBlocks4.stree.txt │ │ │ │ ├── RewritesNestedTagHelperTagBlocks4.tspans.txt │ │ │ │ ├── UnderstandsAllowedChildren1.cspans.txt │ │ │ │ ├── UnderstandsAllowedChildren1.stree.txt │ │ │ │ ├── UnderstandsAllowedChildren1.tspans.txt │ │ │ │ ├── UnderstandsAllowedChildren10.cspans.txt │ │ │ │ ├── UnderstandsAllowedChildren10.diag.txt │ │ │ │ ├── UnderstandsAllowedChildren10.stree.txt │ │ │ │ ├── UnderstandsAllowedChildren10.tspans.txt │ │ │ │ ├── UnderstandsAllowedChildren11.cspans.txt │ │ │ │ ├── UnderstandsAllowedChildren11.diag.txt │ │ │ │ ├── UnderstandsAllowedChildren11.stree.txt │ │ │ │ ├── UnderstandsAllowedChildren11.tspans.txt │ │ │ │ ├── UnderstandsAllowedChildren12.cspans.txt │ │ │ │ ├── UnderstandsAllowedChildren12.diag.txt │ │ │ │ ├── UnderstandsAllowedChildren12.stree.txt │ │ │ │ ├── UnderstandsAllowedChildren12.tspans.txt │ │ │ │ ├── UnderstandsAllowedChildren13.cspans.txt │ │ │ │ ├── UnderstandsAllowedChildren13.diag.txt │ │ │ │ ├── UnderstandsAllowedChildren13.stree.txt │ │ │ │ ├── UnderstandsAllowedChildren13.tspans.txt │ │ │ │ ├── UnderstandsAllowedChildren14.cspans.txt │ │ │ │ ├── UnderstandsAllowedChildren14.diag.txt │ │ │ │ ├── UnderstandsAllowedChildren14.stree.txt │ │ │ │ ├── UnderstandsAllowedChildren14.tspans.txt │ │ │ │ ├── UnderstandsAllowedChildren2.cspans.txt │ │ │ │ ├── UnderstandsAllowedChildren2.stree.txt │ │ │ │ ├── UnderstandsAllowedChildren2.tspans.txt │ │ │ │ ├── UnderstandsAllowedChildren3.cspans.txt │ │ │ │ ├── UnderstandsAllowedChildren3.diag.txt │ │ │ │ ├── UnderstandsAllowedChildren3.stree.txt │ │ │ │ ├── UnderstandsAllowedChildren3.tspans.txt │ │ │ │ ├── UnderstandsAllowedChildren4.cspans.txt │ │ │ │ ├── UnderstandsAllowedChildren4.diag.txt │ │ │ │ ├── UnderstandsAllowedChildren4.stree.txt │ │ │ │ ├── UnderstandsAllowedChildren4.tspans.txt │ │ │ │ ├── UnderstandsAllowedChildren5.cspans.txt │ │ │ │ ├── UnderstandsAllowedChildren5.diag.txt │ │ │ │ ├── UnderstandsAllowedChildren5.stree.txt │ │ │ │ ├── UnderstandsAllowedChildren5.tspans.txt │ │ │ │ ├── UnderstandsAllowedChildren6.cspans.txt │ │ │ │ ├── UnderstandsAllowedChildren6.diag.txt │ │ │ │ ├── UnderstandsAllowedChildren6.stree.txt │ │ │ │ ├── UnderstandsAllowedChildren6.tspans.txt │ │ │ │ ├── UnderstandsAllowedChildren7.cspans.txt │ │ │ │ ├── UnderstandsAllowedChildren7.diag.txt │ │ │ │ ├── UnderstandsAllowedChildren7.stree.txt │ │ │ │ ├── UnderstandsAllowedChildren7.tspans.txt │ │ │ │ ├── UnderstandsAllowedChildren8.cspans.txt │ │ │ │ ├── UnderstandsAllowedChildren8.diag.txt │ │ │ │ ├── UnderstandsAllowedChildren8.stree.txt │ │ │ │ ├── UnderstandsAllowedChildren8.tspans.txt │ │ │ │ ├── UnderstandsAllowedChildren9.cspans.txt │ │ │ │ ├── UnderstandsAllowedChildren9.diag.txt │ │ │ │ ├── UnderstandsAllowedChildren9.stree.txt │ │ │ │ ├── UnderstandsAllowedChildren9.tspans.txt │ │ │ │ ├── UnderstandsNestedRequiredParent1.cspans.txt │ │ │ │ ├── UnderstandsNestedRequiredParent1.stree.txt │ │ │ │ ├── UnderstandsNestedRequiredParent2.cspans.txt │ │ │ │ ├── UnderstandsNestedRequiredParent2.stree.txt │ │ │ │ ├── UnderstandsNestedRequiredParent2.tspans.txt │ │ │ │ ├── UnderstandsNestedRequiredParent3.cspans.txt │ │ │ │ ├── UnderstandsNestedRequiredParent3.stree.txt │ │ │ │ ├── UnderstandsNestedRequiredParent3.tspans.txt │ │ │ │ ├── UnderstandsNestedRequiredParent4.cspans.txt │ │ │ │ ├── UnderstandsNestedRequiredParent4.stree.txt │ │ │ │ ├── UnderstandsNestedRequiredParent5.cspans.txt │ │ │ │ ├── UnderstandsNestedRequiredParent5.stree.txt │ │ │ │ ├── UnderstandsNestedRequiredParent5.tspans.txt │ │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent1.cspans.txt │ │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent1.stree.txt │ │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent1.tspans.txt │ │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent2.cspans.txt │ │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent2.stree.txt │ │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent2.tspans.txt │ │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent3.cspans.txt │ │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent3.stree.txt │ │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent3.tspans.txt │ │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent4.cspans.txt │ │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent4.stree.txt │ │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent4.tspans.txt │ │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent5.cspans.txt │ │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent5.stree.txt │ │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent5.tspans.txt │ │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent6.cspans.txt │ │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent6.stree.txt │ │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent6.tspans.txt │ │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent7.cspans.txt │ │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent7.stree.txt │ │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent7.tspans.txt │ │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent8.cspans.txt │ │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent8.stree.txt │ │ │ │ ├── UnderstandsNestedVoidSelfClosingRequiredParent8.tspans.txt │ │ │ │ ├── UnderstandsNullTagNameWithAllowedChildrenForCatchAll.cspans.txt │ │ │ │ ├── UnderstandsNullTagNameWithAllowedChildrenForCatchAll.diag.txt │ │ │ │ ├── UnderstandsNullTagNameWithAllowedChildrenForCatchAll.stree.txt │ │ │ │ ├── UnderstandsNullTagNameWithAllowedChildrenForCatchAll.tspans.txt │ │ │ │ ├── UnderstandsNullTagNameWithAllowedChildrenForCatchAllWithPrefix.cspans.txt │ │ │ │ ├── UnderstandsNullTagNameWithAllowedChildrenForCatchAllWithPrefix.diag.txt │ │ │ │ ├── UnderstandsNullTagNameWithAllowedChildrenForCatchAllWithPrefix.stree.txt │ │ │ │ ├── UnderstandsNullTagNameWithAllowedChildrenForCatchAllWithPrefix.tspans.txt │ │ │ │ ├── UnderstandsPartialRequiredParentTags1.cspans.txt │ │ │ │ ├── UnderstandsPartialRequiredParentTags1.diag.txt │ │ │ │ ├── UnderstandsPartialRequiredParentTags1.stree.txt │ │ │ │ ├── UnderstandsPartialRequiredParentTags1.tspans.txt │ │ │ │ ├── UnderstandsPartialRequiredParentTags2.cspans.txt │ │ │ │ ├── UnderstandsPartialRequiredParentTags2.diag.txt │ │ │ │ ├── UnderstandsPartialRequiredParentTags2.stree.txt │ │ │ │ ├── UnderstandsPartialRequiredParentTags2.tspans.txt │ │ │ │ ├── UnderstandsPartialRequiredParentTags3.cspans.txt │ │ │ │ ├── UnderstandsPartialRequiredParentTags3.diag.txt │ │ │ │ ├── UnderstandsPartialRequiredParentTags3.stree.txt │ │ │ │ ├── UnderstandsPartialRequiredParentTags3.tspans.txt │ │ │ │ ├── UnderstandsPartialRequiredParentTags4.cspans.txt │ │ │ │ ├── UnderstandsPartialRequiredParentTags4.diag.txt │ │ │ │ ├── UnderstandsPartialRequiredParentTags4.stree.txt │ │ │ │ ├── UnderstandsPartialRequiredParentTags4.tspans.txt │ │ │ │ ├── UnderstandsPartialRequiredParentTags5.cspans.txt │ │ │ │ ├── UnderstandsPartialRequiredParentTags5.diag.txt │ │ │ │ ├── UnderstandsPartialRequiredParentTags5.stree.txt │ │ │ │ ├── UnderstandsPartialRequiredParentTags5.tspans.txt │ │ │ │ ├── UnderstandsPartialRequiredParentTags6.cspans.txt │ │ │ │ ├── UnderstandsPartialRequiredParentTags6.diag.txt │ │ │ │ ├── UnderstandsPartialRequiredParentTags6.stree.txt │ │ │ │ ├── UnderstandsPartialRequiredParentTags6.tspans.txt │ │ │ │ ├── UnderstandsTagHelperPrefixAndAllowedChildren.cspans.txt │ │ │ │ ├── UnderstandsTagHelperPrefixAndAllowedChildren.stree.txt │ │ │ │ ├── UnderstandsTagHelperPrefixAndAllowedChildren.tspans.txt │ │ │ │ ├── UnderstandsTagHelperPrefixAndAllowedChildrenAndRequireParent.cspans.txt │ │ │ │ ├── UnderstandsTagHelperPrefixAndAllowedChildrenAndRequireParent.stree.txt │ │ │ │ ├── UnderstandsTagHelperPrefixAndAllowedChildrenAndRequireParent.tspans.txt │ │ │ │ ├── UnderstandsTagHelpersInHtmlTypedScriptTags1.cspans.txt │ │ │ │ ├── UnderstandsTagHelpersInHtmlTypedScriptTags1.stree.txt │ │ │ │ ├── UnderstandsTagHelpersInHtmlTypedScriptTags1.tspans.txt │ │ │ │ ├── UnderstandsTagHelpersInHtmlTypedScriptTags2.cspans.txt │ │ │ │ ├── UnderstandsTagHelpersInHtmlTypedScriptTags2.stree.txt │ │ │ │ ├── UnderstandsTagHelpersInHtmlTypedScriptTags2.tspans.txt │ │ │ │ ├── UnderstandsTagHelpersInHtmlTypedScriptTags3.cspans.txt │ │ │ │ ├── UnderstandsTagHelpersInHtmlTypedScriptTags3.stree.txt │ │ │ │ ├── UnderstandsTagHelpersInHtmlTypedScriptTags3.tspans.txt │ │ │ │ ├── UnderstandsTagHelpersInHtmlTypedScriptTags4.cspans.txt │ │ │ │ ├── UnderstandsTagHelpersInHtmlTypedScriptTags4.stree.txt │ │ │ │ └── UnderstandsTagHelpersInHtmlTypedScriptTags4.tspans.txt │ │ │ └── WhiteSpaceRewriterTest │ │ │ │ ├── Moves_Whitespace_Preceeding_ExpressionBlock_To_Parent_Block.cspans.txt │ │ │ │ └── Moves_Whitespace_Preceeding_ExpressionBlock_To_Parent_Block.stree.txt │ │ ├── Source │ │ │ └── BasicMarkup.cshtml │ │ └── nested-1000.html │ ├── TestRazorProject.cs │ ├── VirtualRazorProjectFileSystemTest.cs │ └── xunit.runner.json ├── Microsoft.AspNetCore.Razor.Runtime.Test │ ├── Microsoft.AspNetCore.Razor.Runtime.Test.csproj │ ├── Runtime │ │ └── TagHelpers │ │ │ ├── TagHelperExecutionContextTest.cs │ │ │ ├── TagHelperRunnerTest.cs │ │ │ ├── TagHelperScopeManagerTest.cs │ │ │ └── TestTagHelpers │ │ │ ├── CommonTagHelpers.cs │ │ │ └── TagHelperDescriptorFactoryTagHelpers.cs │ ├── TestFiles │ │ ├── Localized │ │ │ ├── TagHelperDocumentation.nl-BE.xml │ │ │ ├── en-GB │ │ │ │ └── TagHelperDocumentation.xml │ │ │ ├── en │ │ │ │ └── TagHelperDocumentation.xml │ │ │ ├── fr-FR │ │ │ │ └── TagHelperDocumentation.fr-FR.xml │ │ │ └── fr │ │ │ │ └── TagHelperDocumentation.fr.xml │ │ └── NotLocalized │ │ │ └── TagHelperDocumentation.xml │ └── xunit.runner.json ├── Microsoft.AspNetCore.Razor.Test.Common │ ├── Language │ │ ├── CodeGeneration │ │ │ └── TestCodeRenderingContext.cs │ │ ├── IntegrationTests │ │ │ ├── CompilationFailedException.cs │ │ │ ├── CompiledAssembly.cs │ │ │ ├── CompiledCSharpCode.cs │ │ │ ├── IntegrationTestBase.cs │ │ │ ├── IntermediateNodeSerializer.cs │ │ │ ├── IntermediateNodeVerifier.cs │ │ │ ├── IntermediateNodeWriter.cs │ │ │ ├── IntializeTestFileAttribute.cs │ │ │ ├── RazorDiagnosticSerializer.cs │ │ │ └── SourceMappingsSerializer.cs │ │ ├── Intermediate │ │ │ └── IntermediateNodeAssert.cs │ │ ├── Legacy │ │ │ ├── ClassifiedSpan │ │ │ │ ├── ClassifiedSpanSerializer.cs │ │ │ │ ├── ClassifiedSpanVerifier.cs │ │ │ │ └── ClassifiedSpanWriter.cs │ │ │ ├── IntializeTestFileAttribute.cs │ │ │ ├── ParserTestBase.cs │ │ │ ├── SyntaxNodeSerializer.cs │ │ │ ├── SyntaxNodeVerifier.cs │ │ │ ├── SyntaxNodeWalker.cs │ │ │ ├── SyntaxNodeWriter.cs │ │ │ └── TagHelperSpan │ │ │ │ ├── TagHelperSpanSerializer.cs │ │ │ │ ├── TagHelperSpanVerifier.cs │ │ │ │ └── TagHelperSpanWriter.cs │ │ ├── RazorEngineBuilderExtensions.cs │ │ ├── RazorProjectEngineBuilderExtensions.cs │ │ ├── SyntaxTreeVerifier.cs │ │ ├── TestBoundAttributeDescriptorBuilderExtensions.cs │ │ ├── TestFile.cs │ │ ├── TestProject.cs │ │ ├── TestRazorCodeDocument.cs │ │ ├── TestRazorProjectFileSystem.cs │ │ ├── TestRazorProjectItem.cs │ │ ├── TestRazorSourceDocument.cs │ │ ├── TestRequiredAttributeDescriptorBuilderExtensions.cs │ │ ├── TestTagHelperDescriptorBuilderExtensions.cs │ │ ├── TestTagHelperFeature.cs │ │ └── TestTagMatchingRuleDescriptorBuilderExtensions.cs │ ├── Microsoft.AspNetCore.Razor.Test.Common.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── TestCompilation.cs ├── Microsoft.AspNetCore.Razor.Test.MvcShim.ClassLib │ └── Microsoft.AspNetCore.Razor.Test.MvcShim.ClassLib.csproj ├── Microsoft.AspNetCore.Razor.Test.MvcShim.Version1_X │ ├── Microsoft.AspNetCore.Mvc.Razor │ │ ├── HelperResult.cs │ │ ├── IRazorPage.cs │ │ ├── RazorInjectAttribute.cs │ │ ├── RazorPage.cs │ │ ├── RazorPageOfT.cs │ │ └── RenderAsyncDelegate.cs │ ├── Microsoft.AspNetCore.Mvc.Rendering │ │ ├── IHtmlHelperOfT.cs │ │ ├── IJsonHelper.cs │ │ └── ViewContext.cs │ ├── Microsoft.AspNetCore.Mvc.ViewFeatures │ │ ├── IModelExpressionProvider.cs │ │ ├── ITempDataDictionary.cs │ │ ├── IViewContextAware.cs │ │ ├── ModelExpression.cs │ │ ├── ViewContextAttribute.cs │ │ ├── ViewDataDictionary.cs │ │ └── ViewDataDictionaryOfT.cs │ ├── Microsoft.AspNetCore.Mvc │ │ ├── IUrlHelper.cs │ │ ├── IViewComponentHelper.cs │ │ └── ViewComponentAttribute.cs │ ├── Microsoft.AspNetCore.Razor.Test.MvcShim.Version1_X.csproj │ └── xunit.runner.json ├── Microsoft.AspNetCore.Razor.Test.MvcShim.Version2_X │ ├── Microsoft.AspNetCore.Mvc.ApplicationParts │ │ ├── CompiledRazorAssemblyApplicationPartFactory.cs │ │ ├── ProvideApplicationPartFactoryAttribute.cs │ │ └── RelatedAssemblyAttribute.cs │ ├── Microsoft.AspNetCore.Mvc.Razor │ │ ├── HelperResult.cs │ │ ├── RazorInjectAttribute.cs │ │ ├── RazorPage.cs │ │ ├── RazorPageBase.cs │ │ ├── RazorPageOfT.cs │ │ ├── RazorViewAttribute.cs │ │ └── RenderAsyncDelegate.cs │ ├── Microsoft.AspNetCore.Mvc.RazorPages │ │ ├── Page.cs │ │ ├── PageContext.cs │ │ ├── PageModel.cs │ │ └── RazorPageAttribute.cs │ ├── Microsoft.AspNetCore.Mvc.Rendering │ │ ├── IHtmlHelperOfT.cs │ │ ├── IJsonHelper.cs │ │ └── ViewContext.cs │ ├── Microsoft.AspNetCore.Mvc.ViewFeatures │ │ ├── IModelExpressionProvider.cs │ │ ├── ITempDataDictionary.cs │ │ ├── IViewContextAware.cs │ │ ├── ModelExpression.cs │ │ ├── ViewContextAttribute.cs │ │ ├── ViewDataDictionary.cs │ │ └── ViewDataDictionaryOfT.cs │ ├── Microsoft.AspNetCore.Mvc │ │ ├── ActionResult.cs │ │ ├── IActionResult.cs │ │ ├── IUrlHelper.cs │ │ ├── IViewComponentHelper.cs │ │ ├── RedirectResult.cs │ │ └── ViewComponentAttribute.cs │ ├── Microsoft.AspNetCore.Razor.Test.MvcShim.Version2_X.csproj │ └── xunit.runner.json ├── Microsoft.AspNetCore.Razor.Test.MvcShim │ ├── Microsoft.AspNetCore.Components │ │ ├── Component.cs │ │ ├── IComponent.cs │ │ └── RenderTree │ │ │ └── RenderTreeBuilder.cs │ ├── Microsoft.AspNetCore.Mvc.ApplicationParts │ │ ├── CompiledRazorAssemblyApplicationPartFactory.cs │ │ ├── ProvideApplicationPartFactoryAttribute.cs │ │ └── RelatedAssemblyAttribute.cs │ ├── Microsoft.AspNetCore.Mvc.Razor │ │ ├── HelperResult.cs │ │ ├── RazorInjectAttribute.cs │ │ ├── RazorPage.cs │ │ ├── RazorPageBase.cs │ │ ├── RazorPageOfT.cs │ │ ├── RazorViewAttribute.cs │ │ └── RenderAsyncDelegate.cs │ ├── Microsoft.AspNetCore.Mvc.RazorPages │ │ ├── Page.cs │ │ ├── PageContext.cs │ │ ├── PageModel.cs │ │ └── RazorPageAttribute.cs │ ├── Microsoft.AspNetCore.Mvc.Rendering │ │ ├── IHtmlHelperOfT.cs │ │ ├── IJsonHelper.cs │ │ └── ViewContext.cs │ ├── Microsoft.AspNetCore.Mvc.ViewFeatures │ │ ├── IModelExpressionProvider.cs │ │ ├── ITempDataDictionary.cs │ │ ├── IViewContextAware.cs │ │ ├── ModelExpression.cs │ │ ├── ViewContextAttribute.cs │ │ ├── ViewDataDictionary.cs │ │ └── ViewDataDictionaryOfT.cs │ ├── Microsoft.AspNetCore.Mvc │ │ ├── ActionResult.cs │ │ ├── IActionResult.cs │ │ ├── IUrlHelper.cs │ │ ├── IViewComponentHelper.cs │ │ ├── RedirectResult.cs │ │ └── ViewComponentAttribute.cs │ ├── Microsoft.AspNetCore.Razor.Test.MvcShim.csproj │ └── xunit.runner.json ├── Microsoft.AspNetCore.Razor.Test │ ├── Microsoft.AspNetCore.Razor.Test.csproj │ ├── TagHelpers │ │ ├── DefaultTagHelperContentTest.cs │ │ ├── NullHtmlEncoderTest.cs │ │ ├── ReadOnlyTagHelperAttributeListTest.cs │ │ ├── TagHelperAttributeListTest.cs │ │ ├── TagHelperContextTest.cs │ │ └── TagHelperOutputTest.cs │ └── xunit.runner.json ├── Microsoft.AspNetCore.Razor.Tools.Test │ ├── CompositeRazorProjectFileSystemTest.cs │ ├── ConcurrentLruCacheTest.cs │ ├── DefaultExtensionAssemblyLoaderTest.cs │ ├── DefaultExtensionDependencyCheckerTest.cs │ ├── DefaultRequestDispatcherTest.cs │ ├── Infrastructure │ │ ├── ServerData.cs │ │ ├── ServerStats.cs │ │ ├── ServerUtilities.cs │ │ └── TestableEventBus.cs │ ├── LoaderTestResources.cs │ ├── MetadataCacheTest.cs │ ├── Microsoft.AspNetCore.Razor.Tools.Test.csproj │ ├── MvcShim.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ServerCommandTest.cs │ ├── ServerLifecycleTest.cs │ ├── ServerProtocol │ │ └── ServerProtocolTest.cs │ ├── TempDirectory.cs │ └── TestDefaultExtensionAssemblyLoader.cs ├── Microsoft.CodeAnalysis.Razor.Test │ ├── CompilationTagHelperFeatureTest.cs │ ├── DefaultTagHelperDescriptorFactoryTest.cs │ ├── DefaultTagHelperDescriptorProviderTest.cs │ ├── Microsoft.CodeAnalysis.Razor.Test.csproj │ ├── TagHelperDescriptorFactoryTagHelpers.cs │ ├── TagHelperTypeVisitorTest.cs │ └── xunit.runner.json ├── Microsoft.CodeAnalysis.Razor.Workspaces.Test.Common │ ├── Microsoft.CodeAnalysis.Razor.Workspaces.Test.Common.csproj │ ├── TestLanguageServices.cs │ ├── TestServices.cs │ ├── TestWorkspace.cs │ └── TestWorkspaceServices.cs ├── Microsoft.CodeAnalysis.Razor.Workspaces.Test │ ├── DefaultRazorCompletionFactsServiceTest.cs │ ├── Microsoft.CodeAnalysis.Razor.Workspaces.Test.csproj │ ├── ProjectSystem │ │ ├── DefaultDocumentSnapshotTest.cs │ │ ├── DefaultProjectSnapshotTest.cs │ │ ├── DocumentStateTest.cs │ │ ├── GeneratedCodeContainerTest.cs │ │ ├── ProjectStateGeneratedOutputTest.cs │ │ └── ProjectStateTest.cs │ ├── RazorExcerptServiceTest.cs │ ├── RazorSpanMappingServiceTest.cs │ ├── Shared │ │ ├── TestImportProjectFeature.cs │ │ ├── TestProjectData.cs │ │ ├── TestProjectSnapshotManager.cs │ │ ├── TestProjectSnapshotProjectEngineFactory.cs │ │ ├── TestTagHelperResolver.cs │ │ └── WorkspaceTestBase.cs │ └── xunit.runner.json ├── Microsoft.NET.Sdk.Razor.Test │ ├── BuildVariables.cs │ ├── BuildVariables.cs.template │ ├── IntegrationTests │ │ ├── Assert.cs │ │ ├── BuildIncrementalismTest.cs │ │ ├── BuildIntegrationTest.cs │ │ ├── BuildIntrospectionTest.cs │ │ ├── BuildPerformanceTest.cs │ │ ├── BuildServerIntegrationTest.cs │ │ ├── BuildServerTestFixture.cs │ │ ├── BuildWithComponentsIntegrationTest.cs │ │ ├── ConfigurationMetadataIntegrationTest.cs │ │ ├── DesignTimeBuildIntegrationTest.cs │ │ ├── FIleThumbPrint.cs │ │ ├── InitializeTestProjectAttribute.cs │ │ ├── MSBuildIntegrationTestBase.cs │ │ ├── MSBuildProcessKind.cs │ │ ├── MSBuildProcessManager.cs │ │ ├── MSBuildResult.cs │ │ ├── PackIntegrationTest.cs │ │ ├── ProjectDirectory.cs │ │ ├── PublishIntegrationTest.cs │ │ ├── RazorCompileIntegrationTest.cs │ │ └── RazorGenerateIntegrationTest.cs │ ├── Microsoft.NET.Sdk.Razor.Test.csproj │ └── xunit.runner.json ├── Microsoft.VisualStudio.Editor.Razor.Test.Common │ ├── Microsoft.VisualStudio.Editor.Razor.Test.Common.csproj │ ├── PartialParserTestBase.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SingleThreadedForegroundDispatcher.cs │ ├── StringTextImage.cs │ ├── StringTextSnapshot.cs │ └── Xunit │ │ ├── ForegroundDispatcherTestBase.cs │ │ ├── ForegroundFactAttribute.cs │ │ ├── ForegroundFactDiscoverer.cs │ │ ├── ForegroundFactTestCase.cs │ │ ├── ForegroundTheoryAttribute.cs │ │ └── ForegroundTheoryDiscoverer.cs ├── Microsoft.VisualStudio.Editor.Razor.Test │ ├── BraceSmartIndenterIntegrationTest.cs │ ├── BraceSmartIndenterTest.cs │ ├── BraceSmartIndenterTestBase.cs │ ├── DefaultCodeDocumentProviderTest.cs │ ├── DefaultEditorSettingsManagerTest.cs │ ├── DefaultImportDocumentManagerIntegrationTest.cs │ ├── DefaultImportDocumentManagerTest.cs │ ├── DefaultProjectPathProviderTest.cs │ ├── DefaultProjectSnapshotProjectEngineFactoryTest.cs │ ├── DefaultRazorDocumentManagerTest.cs │ ├── DefaultRazorEditorFactoryServiceTest.cs │ ├── DefaultRazorIndentationFactsServiceTest.cs │ ├── DefaultRazorSyntaxFactsServiceTest.cs │ ├── DefaultTagHelperCompletionServiceTest.cs │ ├── DefaultTagHelperFactsServiceTest.cs │ ├── DefaultTextBufferCodeDocumentProviderTest.cs │ ├── DefaultTextBufferProviderTest.cs │ ├── DefaultVisualStudioDocumentTrackerTest.cs │ ├── DefaultVisualStudioRazorParserIntegrationTest.cs │ ├── DefaultVisualStudioRazorParserTest.cs │ ├── DefaultWorkspaceEditorSettingsTest.cs │ ├── Documents │ │ ├── EditorDocumentManagerBaseTest.cs │ │ ├── EditorDocumentManagerListenerTest.cs │ │ └── EditorDocumentTest.cs │ ├── Infrastructure │ │ ├── TestEdit.cs │ │ ├── TestTextBuffer.cs │ │ └── TestTextChange.cs │ ├── Microsoft.VisualStudio.Editor.Razor.Test.csproj │ ├── RazorDirectiveCompletionProviderTest.cs │ ├── RazorDirectiveCompletionSourceProviderTest.cs │ ├── RazorDirectiveCompletionSourceTest.cs │ ├── RazorSyntaxFactsServiceExtensionsTest.cs │ ├── RazorSyntaxTreePartialParserTest.cs │ ├── RazorTextViewConnectionListenerTest.cs │ ├── Shared │ │ └── ForegroundDispatcherWorkspaceTestBase.cs │ ├── TestFiles │ │ └── ParserTests │ │ │ ├── DefaultVisualStudioRazorParserIntegrationTest │ │ │ ├── AwaitPeriodInsertionAcceptedProvisionally.cspans.txt │ │ │ ├── AwaitPeriodInsertionAcceptedProvisionally.stree.txt │ │ │ ├── ImpExprAcceptsDCIInStatementBlock.cspans.txt │ │ │ ├── ImpExprAcceptsDCIInStatementBlock.stree.txt │ │ │ ├── ImpExprAcceptsDCIInStatementBlock_1.cspans.txt │ │ │ ├── ImpExprAcceptsDCIInStatementBlock_1.stree.txt │ │ │ ├── ImpExprAcceptsDCIInStmtBlkAfterIdentifiers.cspans.txt │ │ │ ├── ImpExprAcceptsDCIInStmtBlkAfterIdentifiers.stree.txt │ │ │ ├── ImpExprAcceptsDCIInStmtBlkAfterIdentifiers_1.cspans.txt │ │ │ ├── ImpExprAcceptsDCIInStmtBlkAfterIdentifiers_1.stree.txt │ │ │ ├── ImpExprAcceptsDCIInStmtBlkAfterIdentifiers_2.cspans.txt │ │ │ ├── ImpExprAcceptsDCIInStmtBlkAfterIdentifiers_2.stree.txt │ │ │ ├── ImpExprAcceptsIdentifierTypedAfterDotIfLastChangeProvisional.cspans.txt │ │ │ ├── ImpExprAcceptsIdentifierTypedAfterDotIfLastChangeProvisional.stree.txt │ │ │ ├── ImpExprProvisionallyAccCaseInsensitiveDCI_NewRoslynIntegration.cspans.txt │ │ │ ├── ImpExprProvisionallyAccCaseInsensitiveDCI_NewRoslynIntegration.stree.txt │ │ │ ├── ImpExprProvisionallyAccCaseInsensitiveDCI_NewRoslynIntegration_1.cspans.txt │ │ │ ├── ImpExprProvisionallyAccCaseInsensitiveDCI_NewRoslynIntegration_1.stree.txt │ │ │ ├── ImpExprProvisionallyAccCaseInsensitiveDCI_NewRoslynIntegration_2.cspans.txt │ │ │ ├── ImpExprProvisionallyAccCaseInsensitiveDCI_NewRoslynIntegration_2.stree.txt │ │ │ ├── ImpExprProvisionallyAccCaseInsensitiveDCI_NewRoslynIntegration_3.cspans.txt │ │ │ ├── ImpExprProvisionallyAccCaseInsensitiveDCI_NewRoslynIntegration_3.stree.txt │ │ │ ├── ImpExprProvisionallyAccCaseInsensitiveDCI_NewRoslynIntegration_4.cspans.txt │ │ │ ├── ImpExprProvisionallyAccCaseInsensitiveDCI_NewRoslynIntegration_4.stree.txt │ │ │ ├── ImpExprProvisionallyAcceptsDCI.cspans.txt │ │ │ ├── ImpExprProvisionallyAcceptsDCI.stree.txt │ │ │ ├── ImpExprProvisionallyAcceptsDCIAfterIdentifiers.cspans.txt │ │ │ ├── ImpExprProvisionallyAcceptsDCIAfterIdentifiers.stree.txt │ │ │ ├── ImpExprProvisionallyAcceptsDCIAfterIdentifiers_1.cspans.txt │ │ │ ├── ImpExprProvisionallyAcceptsDCIAfterIdentifiers_1.stree.txt │ │ │ ├── ImpExprProvisionallyAcceptsDCIAfterIdentifiers_2.cspans.txt │ │ │ ├── ImpExprProvisionallyAcceptsDCIAfterIdentifiers_2.stree.txt │ │ │ ├── ImpExprProvisionallyAcceptsDCIAfterIdentifiers_3.cspans.txt │ │ │ ├── ImpExprProvisionallyAcceptsDCIAfterIdentifiers_3.stree.txt │ │ │ ├── ImpExprProvisionallyAcceptsDCI_1.cspans.txt │ │ │ ├── ImpExprProvisionallyAcceptsDCI_1.stree.txt │ │ │ ├── ImpExprProvisionallyAcceptsDCI_2.cspans.txt │ │ │ ├── ImpExprProvisionallyAcceptsDCI_2.stree.txt │ │ │ ├── ImpExprRejectsAcceptableChangeIfPrevWasProvisionallyAccepted.cspans.txt │ │ │ ├── ImpExprRejectsAcceptableChangeIfPrevWasProvisionallyAccepted.stree.txt │ │ │ ├── ImpExpr_AcceptsParenthesisAtEnd_SingleEdit.cspans.txt │ │ │ ├── ImpExpr_AcceptsParenthesisAtEnd_SingleEdit.stree.txt │ │ │ ├── ImpExpr_AcceptsParenthesisAtEnd_TwoEdits.cspans.txt │ │ │ └── ImpExpr_AcceptsParenthesisAtEnd_TwoEdits.stree.txt │ │ │ └── RazorSyntaxTreePartialParserTest │ │ │ ├── ImpExprAcceptsAdditionalIdentifierCharactersIfEndOfSpanIsIdentifier.cspans.txt │ │ │ ├── ImpExprAcceptsAdditionalIdentifierCharactersIfEndOfSpanIsIdentifier.stree.txt │ │ │ ├── ImpExprAcceptsAdditionalIdentifierStartCharactersIfEndOfSpanIsDot.cspans.txt │ │ │ ├── ImpExprAcceptsAdditionalIdentifierStartCharactersIfEndOfSpanIsDot.stree.txt │ │ │ ├── ImpExprAcceptsDeleteOfIdentifierPartsIfSomeOfIdentifierRemains.cspans.txt │ │ │ ├── ImpExprAcceptsDeleteOfIdentifierPartsIfSomeOfIdentifierRemains.stree.txt │ │ │ ├── ImpExprAcceptsDotAtEndOfNonWhitespaceCharacters.cspans.txt │ │ │ ├── ImpExprAcceptsDotAtEndOfNonWhitespaceCharacters.stree.txt │ │ │ ├── ImpExprAcceptsDotIfTrailingDotsAreAllowed.cspans.txt │ │ │ ├── ImpExprAcceptsDotIfTrailingDotsAreAllowed.stree.txt │ │ │ ├── ImpExprAcceptsIdentifierAfterDotAtEndOfNonWhitespaceCharacters.cspans.txt │ │ │ ├── ImpExprAcceptsIdentifierAfterDotAtEndOfNonWhitespaceCharacters.stree.txt │ │ │ ├── ImpExprAcceptsIdentifierExpansionAtEndOfNonWhitespaceCharacters.cspans.txt │ │ │ ├── ImpExprAcceptsIdentifierExpansionAtEndOfNonWhitespaceCharacters.stree.txt │ │ │ ├── ImpExprAcceptsInnerInsertions.cspans.txt │ │ │ ├── ImpExprAcceptsInnerInsertions.stree.txt │ │ │ ├── ImpExprAcceptsInnerInsertionsInStatementBlock.cspans.txt │ │ │ ├── ImpExprAcceptsInnerInsertionsInStatementBlock.stree.txt │ │ │ ├── ImpExprAcceptsMultipleInsertionIfItOnlyCausesIdentifierExpansion.cspans.txt │ │ │ ├── ImpExprAcceptsMultipleInsertionIfItOnlyCausesIdentifierExpansion.stree.txt │ │ │ ├── ImpExprAcceptsPrefixIdentifierReplacements_MultipleSymbols.cspans.txt │ │ │ ├── ImpExprAcceptsPrefixIdentifierReplacements_MultipleSymbols.stree.txt │ │ │ ├── ImpExprAcceptsPrefixIdentifierReplacements_SingleSymbol.cspans.txt │ │ │ ├── ImpExprAcceptsPrefixIdentifierReplacements_SingleSymbol.stree.txt │ │ │ ├── ImpExprAcceptsSuffixIdentifierReplacements_MultipleSymbols.cspans.txt │ │ │ ├── ImpExprAcceptsSuffixIdentifierReplacements_MultipleSymbols.stree.txt │ │ │ ├── ImpExprAcceptsSuffixIdentifierReplacements_SingleSymbol.cspans.txt │ │ │ ├── ImpExprAcceptsSuffixIdentifierReplacements_SingleSymbol.stree.txt │ │ │ ├── ImpExprAcceptsSurroundedIdentifierReplacements.cspans.txt │ │ │ ├── ImpExprAcceptsSurroundedIdentifierReplacements.stree.txt │ │ │ ├── ImpExprAcceptsWholeIdentifierReplacement.cspans.txt │ │ │ ├── ImpExprAcceptsWholeIdentifierReplacement.stree.txt │ │ │ ├── ImpExprProvisionalForMultipleInsertionIfItCausesIdentifierExpansionAndTrailingDot.cspans.txt │ │ │ ├── ImpExprProvisionalForMultipleInsertionIfItCausesIdentifierExpansionAndTrailingDot.stree.txt │ │ │ ├── ImpExprProvisionallyAcceptsDeleteOfIdentifierPartsIfDotRemains.cspans.txt │ │ │ ├── ImpExprProvisionallyAcceptsDeleteOfIdentifierPartsIfDotRemains.stree.txt │ │ │ ├── ImpExprProvisionallyAcceptsDotAfterIdentifierInMarkup.cspans.txt │ │ │ └── ImpExprProvisionallyAcceptsDotAfterIdentifierInMarkup.stree.txt │ ├── TextContentChangedEventArgsExtensionsTest.cs │ └── xunit.runner.json ├── Microsoft.VisualStudio.LanguageServices.Razor.Test │ ├── DefaultVisualStudioWorkspaceAccessorTest.cs │ ├── DocumentGenerator │ │ └── BackgroundDocumentGeneratorTest.cs │ ├── Documents │ │ └── VisualStudioFileChangeTrackerTest.cs │ ├── Microsoft.VisualStudio.LanguageServices.Razor.Test.csproj │ ├── OOPTagHelperResolverTest.cs │ ├── ProjectSystem │ │ ├── DefaultProjectSnapshotManagerTest.cs │ │ ├── DefaultRazorProjectHostTest.cs │ │ ├── FallbackRazorProjectHostTest.cs │ │ ├── ItemCollection.cs │ │ ├── PropertyCollection.cs │ │ ├── TestAssemblyReference.cs │ │ ├── TestProjectChangeDescription.cs │ │ ├── TestProjectRuleSnapshot.cs │ │ ├── TestProjectSystemServices.cs │ │ ├── TestPropertyData.cs │ │ └── WorkspaceProjectSnapshotChangeTriggerTest.cs │ ├── Serialization │ │ ├── ProjectSnapshotHandleSerializationTest.cs │ │ ├── RazorConfigurationSerializationTest.cs │ │ ├── RazorExtensionSerializationTest.cs │ │ └── TagHelperDescriptorSerializationTest.cs │ ├── VsSolutionUpdatesProjectSnapshotChangeTriggerTest.cs │ └── xunit.runner.json ├── Microsoft.VisualStudio.Mac.LanguageServices.Razor.Test │ ├── DefaultDotNetProjectHostTest.cs │ ├── DefaultRazorProjectHostTest.cs │ ├── DefaultVisualStudioMacWorkspaceAccessorTest.cs │ ├── Documents │ │ └── VisualStudioMacFileChangeTrackerTest.cs │ ├── FallbackRazorProjectHostTest.cs │ ├── Microsoft.VisualStudio.Mac.LanguageServices.Razor.Test.csproj │ ├── ProjectBuildChangeTriggerTest.cs │ └── xunit.runner.json ├── RazorPageGenerator.Test │ ├── RazorPageGenerator.Test.csproj │ ├── RazorPageGeneratorTest.cs │ ├── TestFiles │ │ └── Views │ │ │ ├── TestFile.js │ │ │ ├── TestView.Designer.expected.cs │ │ │ └── TestView.cshtml │ └── xunit.runner.json └── testapps │ ├── AppWithP2PReference │ ├── AppWithP2PReference.csproj │ ├── Models │ │ └── ErrorViewModel.cs │ ├── Program.cs │ └── Views │ │ ├── Home │ │ ├── About.cshtml │ │ ├── Contact.cshtml │ │ └── Index.cshtml │ │ ├── Shared │ │ ├── Error.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── ClassLibrary │ ├── Class1.cs │ ├── ClassLibrary.csproj │ └── Views │ │ ├── Shared │ │ └── _Layout.cshtml │ │ └── _ViewImports.cshtml │ ├── ClassLibrary2 │ ├── Class2.cs │ ├── ClassLibrary2.csproj │ └── Views │ │ ├── Shared │ │ └── Index.cshtml │ │ └── _ViewImports.cshtml │ ├── ClassLibraryMvc21 │ ├── Areas │ │ └── MyFeature │ │ │ └── Pages │ │ │ ├── Page1.cshtml │ │ │ └── Page1.cshtml.cs │ └── ClassLibraryMvc21.csproj │ ├── Directory.Build.props │ ├── Directory.Build.targets │ ├── LargeProject │ ├── LargeProject.csproj │ └── Views │ │ ├── Home │ │ ├── View000.cshtml │ │ ├── View001.cshtml │ │ ├── View002.cshtml │ │ └── View003.cshtml │ │ └── Shared │ │ ├── _Layout.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── LinkedDir │ ├── LinkedErrorFile.cshtml │ ├── LinkedFile.cshtml │ ├── LinkedFile2.cshtml │ └── LinkedFile3.cshtml │ ├── MvcWithComponents │ ├── Models │ │ └── ErrorViewModel.cs │ ├── MvcWithComponents.csproj │ ├── Program.cs │ ├── TestComponent.razor │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── NavMenu.razor │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── RazorTest.Introspection.targets │ ├── SimpleMvc │ ├── Models │ │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── SimpleMvc.csproj │ ├── SimpleTagHelper.cs │ ├── Views │ │ ├── Home │ │ │ ├── About.cshtml │ │ │ ├── Contact.cshtml │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ └── wwwroot │ │ ├── css │ │ └── site.css │ │ └── js │ │ └── SimpleMvc.js │ ├── SimpleMvc21 │ ├── Models │ │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── SimpleMvc21.csproj │ └── Views │ │ ├── Home │ │ ├── About.cshtml │ │ └── Index.cshtml │ │ ├── Shared │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── SimpleMvcFSharp │ ├── Models │ │ └── ErrorViewModel.fs │ ├── Program.fs │ ├── SimpleMvcFSharp.fsproj │ └── Views │ │ ├── Home │ │ └── About.cshtml │ │ └── _ViewImports.cshtml │ └── SimplePages │ ├── Areas │ └── Products │ │ └── Pages │ │ ├── Index.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── Pages │ ├── About.cshtml │ ├── About.cshtml.cs │ ├── Contact.cshtml │ ├── Contact.cshtml.cs │ ├── Index.cshtml │ ├── Index.cshtml.cs │ ├── _Layout.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── Program.cs │ └── SimplePages.csproj ├── tooling ├── Microsoft.VisualStudio.Mac.RazorAddin │ ├── AddinMetadata.props │ ├── Microsoft.VisualStudio.Mac.RazorAddin.csproj │ ├── Properties │ │ └── _Manifest.addin.xml │ ├── RazorAddin.cs │ └── RazorProjectExtension.cs └── Microsoft.VisualStudio.RazorExtension │ ├── AboutDialogInfoAttribute.cs │ ├── Behaviors │ └── ItemSelectedBehavior.cs │ ├── DocumentInfo │ ├── RazorDocumentInfoViewModel.cs │ ├── RazorDocumentInfoWindow.cs │ ├── RazorDocumentInfoWindowCommand.cs │ ├── RazorDocumentInfoWindowControl.xaml │ └── RazorDocumentInfoWindowControl.xaml.cs │ ├── Microsoft.VisualStudio.RazorExtension.csproj │ ├── NotifyPropertyChanged.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── RazorInfo │ ├── DirectiveCollectionViewModel.cs │ ├── DirectiveItemViewModel.cs │ ├── DocumentCollectionViewModel.cs │ ├── DocumentItemViewModel.cs │ ├── NullToEnabledConverter.cs │ ├── ProjectPropertyCollectionViewModel.cs │ ├── ProjectPropertyItemViewModel.cs │ ├── ProjectViewModel.cs │ ├── RazorInfoToolWindow.cs │ ├── RazorInfoToolWindowCommand.cs │ ├── RazorInfoToolWindowControl.xaml │ ├── RazorInfoToolWindowControl.xaml.cs │ ├── RazorInfoViewModel.cs │ ├── TagHelperCollectionViewModel.cs │ └── TagHelperItemViewModel.cs │ ├── RazorPackage.cs │ ├── RazorPackage.vsct │ ├── RelayCommand.cs │ ├── Resources │ ├── RazorInfoToolWindowCommand.png │ └── RazorPackage.ico │ ├── VSPackage.resx │ ├── WebConfiguration.png │ ├── razorLanguageService.servicehub.service.json │ ├── razorLanguageService64.servicehub.service.json │ └── source.extension.vsixmanifest └── version.props /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vsts-pipelines/builds/ci-internal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/.vsts-pipelines/builds/ci-internal.yml -------------------------------------------------------------------------------- /.vsts-pipelines/builds/ci-public.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/.vsts-pipelines/builds/ci-public.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/NuGet.config -------------------------------------------------------------------------------- /NuGetPackageVerifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/NuGetPackageVerifier.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/README.md -------------------------------------------------------------------------------- /Razor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/Razor.sln -------------------------------------------------------------------------------- /benchmarks/Microsoft.AspNetCore.Razor.Performance/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/benchmarks/Microsoft.AspNetCore.Razor.Performance/AssemblyInfo.cs -------------------------------------------------------------------------------- /benchmarks/Microsoft.AspNetCore.Razor.Performance/MSN.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/benchmarks/Microsoft.AspNetCore.Razor.Performance/MSN.cshtml -------------------------------------------------------------------------------- /benchmarks/Microsoft.AspNetCore.Razor.Performance/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/benchmarks/Microsoft.AspNetCore.Razor.Performance/readme.md -------------------------------------------------------------------------------- /benchmarks/Microsoft.AspNetCore.Razor.Performance/taghelpers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/benchmarks/Microsoft.AspNetCore.Razor.Performance/taghelpers.json -------------------------------------------------------------------------------- /korebuild-lock.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/korebuild-lock.txt -------------------------------------------------------------------------------- /korebuild.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/korebuild.json -------------------------------------------------------------------------------- /run.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/run.cmd -------------------------------------------------------------------------------- /run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/run.ps1 -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/run.sh -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version1_X/InjectDirective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version1_X/InjectDirective.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version1_X/ModelDirective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version1_X/ModelDirective.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version1_X/RazorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version1_X/RazorExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version1_X/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version1_X/Resources.resx -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X/InjectDirective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X/InjectDirective.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X/ModelDirective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X/ModelDirective.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X/PageDirective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X/PageDirective.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X/RazorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X/RazorExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X/Resources.resx -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions/ExtensionInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.Extensions/ExtensionInitializer.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions/IInjectTargetExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.Extensions/IInjectTargetExtension.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions/InjectDirective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.Extensions/InjectDirective.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions/InjectIntermediateNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.Extensions/InjectIntermediateNode.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions/InjectTargetExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.Extensions/InjectTargetExtension.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions/ModelDirective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.Extensions/ModelDirective.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions/ModelExpressionPass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.Extensions/ModelExpressionPass.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions/MvcImportProjectFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.Extensions/MvcImportProjectFeature.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions/MvcRazorTemplateEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.Extensions/MvcRazorTemplateEngine.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions/NamespaceDirective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.Extensions/NamespaceDirective.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions/PageDirective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.Extensions/PageDirective.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions/PagesPropertyInjectionPass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.Extensions/PagesPropertyInjectionPass.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.Extensions/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions/RazorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.Extensions/RazorExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.Extensions/Resources.resx -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions/ViewComponentResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.Extensions/ViewComponentResources.resx -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions/ViewComponentTagHelperPass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.Extensions/ViewComponentTagHelperPass.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions/ViewComponentTypeVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.Extensions/ViewComponentTypeVisitor.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions/ViewComponentTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.Extensions/ViewComponentTypes.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions/baseline.netcore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.Extensions/baseline.netcore.json -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions/baseline.netframework.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.Extensions/baseline.netframework.json -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.Extensions/breakingchanges.netcore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.Extensions/breakingchanges.netcore.json -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/AllowedChildTagDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/AllowedChildTagDescriptor.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/AllowedChildTagDescriptorBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/AllowedChildTagDescriptorBuilder.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/AssemblyExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/AssemblyExtension.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/AttributeStructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/AttributeStructure.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/BoundAttributeDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/BoundAttributeDescriptor.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/BoundAttributeDescriptorBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/BoundAttributeDescriptorBuilder.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/BoundAttributeDescriptorComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/BoundAttributeDescriptorComparer.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/CSharpIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/CSharpIdentifier.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Checksum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Checksum.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/ClassifiedSpanVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/ClassifiedSpanVisitor.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/CodeGeneration/CodeTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/CodeGeneration/CodeTarget.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/CodeGeneration/CodeTargetBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/CodeGeneration/CodeTargetBuilder.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/CodeGeneration/CodeWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/CodeGeneration/CodeWriter.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/CodeGeneration/DefaultCodeTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/CodeGeneration/DefaultCodeTarget.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/CodeGeneration/DocumentWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/CodeGeneration/DocumentWriter.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/CodeGeneration/RuntimeNodeWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/CodeGeneration/RuntimeNodeWriter.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Components/ComponentExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Components/ComponentExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/DefaultAllowedChildTagDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/DefaultAllowedChildTagDescriptor.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/DefaultBoundAttributeDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/DefaultBoundAttributeDescriptor.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/DefaultDirectiveSyntaxTreePass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/DefaultDirectiveSyntaxTreePass.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/DefaultDocumentClassifierPass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/DefaultDocumentClassifierPass.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/DefaultImportProjectFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/DefaultImportProjectFeature.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/DefaultRazorCSharpDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/DefaultRazorCSharpDocument.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/DefaultRazorCSharpLoweringPhase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/DefaultRazorCSharpLoweringPhase.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/DefaultRazorCodeDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/DefaultRazorCodeDocument.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/DefaultRazorDiagnostic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/DefaultRazorDiagnostic.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/DefaultRazorDirectiveFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/DefaultRazorDirectiveFeature.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/DefaultRazorEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/DefaultRazorEngine.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/DefaultRazorEngineBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/DefaultRazorEngineBuilder.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/DefaultRazorOptimizationPhase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/DefaultRazorOptimizationPhase.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/DefaultRazorParserOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/DefaultRazorParserOptions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/DefaultRazorParserOptionsBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/DefaultRazorParserOptionsBuilder.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/DefaultRazorParserOptionsFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/DefaultRazorParserOptionsFeature.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/DefaultRazorParsingPhase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/DefaultRazorParsingPhase.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/DefaultRazorProjectEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/DefaultRazorProjectEngine.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/DefaultRazorProjectEngineBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/DefaultRazorProjectEngineBuilder.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/DefaultRazorProjectFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/DefaultRazorProjectFileSystem.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/DefaultRazorProjectItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/DefaultRazorProjectItem.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/DefaultRazorSourceLineCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/DefaultRazorSourceLineCollection.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/DefaultRazorSyntaxTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/DefaultRazorSyntaxTree.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/DefaultRazorSyntaxTreePhase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/DefaultRazorSyntaxTreePhase.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/DefaultRazorTagHelperBinderPhase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/DefaultRazorTagHelperBinderPhase.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/DefaultTagHelperDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/DefaultTagHelperDescriptor.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/DirectiveDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/DirectiveDescriptor.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/DirectiveDescriptorComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/DirectiveDescriptorComparer.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/DirectiveKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/DirectiveKind.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/DirectiveTokenDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/DirectiveTokenDescriptor.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/DirectiveTokenEditHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/DirectiveTokenEditHandler.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/DirectiveTokenKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/DirectiveTokenKind.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/DirectiveUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/DirectiveUsage.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/DocumentClassifierPassBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/DocumentClassifierPassBase.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/EmptyProjectFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/EmptyProjectFileSystem.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Extensions/FunctionsDirective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Extensions/FunctionsDirective.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Extensions/InheritsDirective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Extensions/InheritsDirective.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Extensions/SectionDirective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Extensions/SectionDirective.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/HtmlConventions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/HtmlConventions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/HtmlNodeOptimizationPass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/HtmlNodeOptimizationPass.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/IDirectiveDescriptorBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/IDirectiveDescriptorBuilder.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/IImportProjectFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/IImportProjectFeature.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/IRazorCSharpLoweringPhase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/IRazorCSharpLoweringPhase.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/IRazorDirectiveClassifierPass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/IRazorDirectiveClassifierPass.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/IRazorDirectiveFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/IRazorDirectiveFeature.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/IRazorDocumentClassifierPass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/IRazorDocumentClassifierPass.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/IRazorDocumentClassifierPhase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/IRazorDocumentClassifierPhase.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/IRazorEngineBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/IRazorEngineBuilder.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/IRazorEngineFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/IRazorEngineFeature.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/IRazorEnginePhase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/IRazorEnginePhase.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/IRazorFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/IRazorFeature.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/IRazorOptimizationPass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/IRazorOptimizationPass.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/IRazorOptimizationPhase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/IRazorOptimizationPhase.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/IRazorParserOptionsFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/IRazorParserOptionsFeature.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/IRazorParsingPhase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/IRazorParsingPhase.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/IRazorProjectEngineFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/IRazorProjectEngineFeature.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/IRazorSyntaxTreePass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/IRazorSyntaxTreePass.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/IRazorSyntaxTreePhase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/IRazorSyntaxTreePhase.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/IRazorTagHelperBinderPhase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/IRazorTagHelperBinderPhase.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/IRazorTargetExtensionFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/IRazorTargetExtensionFeature.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/ITagHelperDescriptorProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/ITagHelperDescriptorProvider.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/ITagHelperFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/ITagHelperFeature.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Intermediate/IntermediateNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Intermediate/IntermediateNode.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Intermediate/MethodParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Intermediate/MethodParameter.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Intermediate/TokenKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Intermediate/TokenKind.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Intermediate/TypeParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Intermediate/TypeParameter.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/IntermediateNodePassBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/IntermediateNodePassBase.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/ItemCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/ItemCollection.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/LargeTextSourceDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/LargeTextSourceDocument.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Legacy/BalancingModes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Legacy/BalancingModes.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Legacy/BlockKindInternal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Legacy/BlockKindInternal.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Legacy/CSharpCodeParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Legacy/CSharpCodeParser.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Legacy/CSharpKeyword.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Legacy/CSharpKeyword.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Legacy/CSharpTokenizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Legacy/CSharpTokenizer.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Legacy/ClassifiedSpanInternal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Legacy/ClassifiedSpanInternal.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Legacy/CodeBlockEditHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Legacy/CodeBlockEditHandler.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Legacy/DirectiveHtmlTokenizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Legacy/DirectiveHtmlTokenizer.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Legacy/DisposableAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Legacy/DisposableAction.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Legacy/EditResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Legacy/EditResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Legacy/ErrorSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Legacy/ErrorSink.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Legacy/HtmlMarkupParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Legacy/HtmlMarkupParser.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Legacy/HtmlTokenizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Legacy/HtmlTokenizer.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Legacy/ISpanChunkGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Legacy/ISpanChunkGenerator.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Legacy/ITextBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Legacy/ITextBuffer.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Legacy/ITextDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Legacy/ITextDocument.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Legacy/ITokenizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Legacy/ITokenizer.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Legacy/KnownTokenType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Legacy/KnownTokenType.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Legacy/LocationTagged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Legacy/LocationTagged.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Legacy/MarkupChunkGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Legacy/MarkupChunkGenerator.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Legacy/ParserBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Legacy/ParserBase.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Legacy/ParserContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Legacy/ParserContext.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Legacy/ParserHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Legacy/ParserHelpers.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Legacy/RazorParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Legacy/RazorParser.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Legacy/SeekableTextReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Legacy/SeekableTextReader.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Legacy/SourceLocationTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Legacy/SourceLocationTracker.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Legacy/SpanChunkGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Legacy/SpanChunkGenerator.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Legacy/SpanContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Legacy/SpanContext.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Legacy/SpanEditHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Legacy/SpanEditHandler.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Legacy/SpanKindInternal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Legacy/SpanKindInternal.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Legacy/SyntaxConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Legacy/SyntaxConstants.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Legacy/TagHelperAttributeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Legacy/TagHelperAttributeNode.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Legacy/TagHelperBlockRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Legacy/TagHelperBlockRewriter.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Legacy/TagHelperDirectiveType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Legacy/TagHelperDirectiveType.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Legacy/TagHelperSpanInternal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Legacy/TagHelperSpanInternal.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Legacy/TextReaderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Legacy/TextReaderExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Legacy/Tokenizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Legacy/Tokenizer.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Legacy/TokenizerBackedParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Legacy/TokenizerBackedParser.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Legacy/TokenizerView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Legacy/TokenizerView.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Legacy/WhiteSpaceRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Legacy/WhiteSpaceRewriter.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/NotFoundProjectItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/NotFoundProjectItem.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/RazorCSharpDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/RazorCSharpDocument.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/RazorCodeDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/RazorCodeDocument.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/RazorCodeDocumentExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/RazorCodeDocumentExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/RazorCodeGenerationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/RazorCodeGenerationOptions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/RazorConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/RazorConfiguration.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/RazorDiagnostic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/RazorDiagnostic.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/RazorDiagnosticCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/RazorDiagnosticCollection.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/RazorDiagnosticDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/RazorDiagnosticDescriptor.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/RazorDiagnosticFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/RazorDiagnosticFactory.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/RazorDiagnosticSeverity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/RazorDiagnosticSeverity.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/RazorEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/RazorEngine.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/RazorEngineBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/RazorEngineBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/RazorEngineFeatureBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/RazorEngineFeatureBase.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/RazorEnginePhaseBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/RazorEnginePhaseBase.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/RazorExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/RazorExtension.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/RazorExtensionInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/RazorExtensionInitializer.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/RazorLanguageVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/RazorLanguageVersion.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/RazorParserFeatureFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/RazorParserFeatureFlags.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/RazorParserOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/RazorParserOptions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/RazorParserOptionsBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/RazorParserOptionsBuilder.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/RazorProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/RazorProject.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/RazorProjectEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/RazorProjectEngine.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/RazorProjectEngineBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/RazorProjectEngineBuilder.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/RazorProjectEngineFeatureBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/RazorProjectEngineFeatureBase.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/RazorProjectFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/RazorProjectFileSystem.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/RazorProjectItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/RazorProjectItem.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/RazorSourceDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/RazorSourceDocument.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/RazorSourceDocumentProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/RazorSourceDocumentProperties.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/RazorSourceLineCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/RazorSourceLineCollection.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/RazorSyntaxTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/RazorSyntaxTree.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/RazorTemplateEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/RazorTemplateEngine.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/RazorTemplateEngineOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/RazorTemplateEngineOptions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/RequiredAttributeDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/RequiredAttributeDescriptor.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Resources.resx -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/SourceChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/SourceChange.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/SourceLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/SourceLocation.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/SourceMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/SourceMapping.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/SourceSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/SourceSpan.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/StreamSourceDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/StreamSourceDocument.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/StringSourceDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/StringSourceDocument.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Syntax/ArrayElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Syntax/ArrayElement.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Syntax/ChildSyntaxList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Syntax/ChildSyntaxList.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Syntax/GreenNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Syntax/GreenNode.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Syntax/GreenNodeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Syntax/GreenNodeExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Syntax/MarkupElementRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Syntax/MarkupElementRewriter.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Syntax/NodeFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Syntax/NodeFlags.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Syntax/ObjectPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Syntax/ObjectPool.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Syntax/RazorDirectiveSyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Syntax/RazorDirectiveSyntax.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Syntax/RazorSyntaxNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Syntax/RazorSyntaxNode.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Syntax/SpecializedCollections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Syntax/SpecializedCollections.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Syntax/Syntax.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Syntax/Syntax.xml -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Syntax/SyntaxAnnotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Syntax/SyntaxAnnotation.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Syntax/SyntaxExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Syntax/SyntaxExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Syntax/SyntaxFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Syntax/SyntaxFactory.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Syntax/SyntaxKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Syntax/SyntaxKind.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Syntax/SyntaxList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Syntax/SyntaxList.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Syntax/SyntaxListBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Syntax/SyntaxListBuilder.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Syntax/SyntaxListBuilderOfT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Syntax/SyntaxListBuilderOfT.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Syntax/SyntaxListOfT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Syntax/SyntaxListOfT.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Syntax/SyntaxNode.Iterators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Syntax/SyntaxNode.Iterators.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Syntax/SyntaxNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Syntax/SyntaxNode.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Syntax/SyntaxNodeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Syntax/SyntaxNodeExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Syntax/SyntaxReplacer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Syntax/SyntaxReplacer.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Syntax/SyntaxRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Syntax/SyntaxRewriter.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Syntax/SyntaxSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Syntax/SyntaxSerializer.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Syntax/SyntaxToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Syntax/SyntaxToken.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Syntax/SyntaxTrivia.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Syntax/SyntaxTrivia.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Syntax/SyntaxTriviaList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Syntax/SyntaxTriviaList.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Syntax/SyntaxVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Syntax/SyntaxVisitor.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Syntax/SyntaxWalker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Syntax/SyntaxWalker.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/Syntax/TextSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/Syntax/TextSpan.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/TagHelperAttributeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/TagHelperAttributeInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/TagHelperBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/TagHelperBinder.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/TagHelperBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/TagHelperBinding.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/TagHelperConventions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/TagHelperConventions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/TagHelperDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/TagHelperDescriptor.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/TagHelperDescriptorBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/TagHelperDescriptorBuilder.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/TagHelperDescriptorComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/TagHelperDescriptorComparer.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/TagHelperDescriptorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/TagHelperDescriptorExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/TagHelperDocumentContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/TagHelperDocumentContext.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/TagHelperInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/TagHelperInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/TagHelperMatchingConventions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/TagHelperMatchingConventions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/TagHelperMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/TagHelperMetadata.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/TagHelperSpanVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/TagHelperSpanVisitor.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/TagMatchingRuleDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/TagMatchingRuleDescriptor.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/TagMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/TagMode.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/TagStructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/TagStructure.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/VirtualRazorProjectFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/VirtualRazorProjectFileSystem.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/baseline.netcore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/baseline.netcore.json -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/baseline.netframework.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/baseline.netframework.json -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Language/breakingchanges.netcore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Language/breakingchanges.netcore.json -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Runtime/Hosting/RazorCompiledItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Runtime/Hosting/RazorCompiledItem.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Runtime/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Runtime/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Runtime/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Runtime/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Runtime/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Runtime/Resources.resx -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Runtime/baseline.netcore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Runtime/baseline.netcore.json -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Tools/Application.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Tools/Application.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Tools/CachingMetadataReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Tools/CachingMetadataReference.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Tools/Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Tools/Client.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Tools/CommandBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Tools/CommandBase.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Tools/CompilerHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Tools/CompilerHost.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Tools/CompositeRazorProjectFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Tools/CompositeRazorProjectFileSystem.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Tools/ConcurrentLruCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Tools/ConcurrentLruCache.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Tools/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Tools/Connection.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Tools/ConnectionHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Tools/ConnectionHost.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Tools/ConnectionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Tools/ConnectionResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Tools/DebugMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Tools/DebugMode.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Tools/DefaultExtensionAssemblyLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Tools/DefaultExtensionAssemblyLoader.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Tools/DefaultRequestDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Tools/DefaultRequestDispatcher.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Tools/DiscoverCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Tools/DiscoverCommand.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Tools/EventBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Tools/EventBus.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Tools/ExtensionAssemblyLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Tools/ExtensionAssemblyLoader.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Tools/ExtensionDependencyChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Tools/ExtensionDependencyChecker.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Tools/GenerateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Tools/GenerateCommand.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Tools/Memory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Tools/Memory.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Tools/MetadataCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Tools/MetadataCache.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Tools/MetadataReaderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Tools/MetadataReaderExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Tools/MutexName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Tools/MutexName.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Tools/PipeName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Tools/PipeName.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Tools/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Tools/Program.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Tools/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Tools/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Tools/RequestDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Tools/RequestDispatcher.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Tools/ServerCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Tools/ServerCommand.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Tools/ServerProtocol/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Tools/ServerProtocol/NativeMethods.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Tools/ServerProtocol/RequestArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Tools/ServerProtocol/RequestArgument.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Tools/ServerProtocol/ServerConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Tools/ServerProtocol/ServerConnection.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Tools/ServerProtocol/ServerLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Tools/ServerProtocol/ServerLogger.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Tools/ServerProtocol/ServerPaths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Tools/ServerProtocol/ServerPaths.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Tools/ServerProtocol/ServerProtocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Tools/ServerProtocol/ServerProtocol.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Tools/ServerProtocol/ServerRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Tools/ServerProtocol/ServerRequest.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Tools/ServerProtocol/ServerResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Tools/ServerProtocol/ServerResponse.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Tools/ShadowCopyManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Tools/ShadowCopyManager.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor.Tools/ShutdownCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor.Tools/ShutdownCommand.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor/Microsoft.AspNetCore.Razor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor/Microsoft.AspNetCore.Razor.csproj -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor/TagHelpers/DefaultTagHelperContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor/TagHelpers/DefaultTagHelperContent.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor/TagHelpers/HtmlAttributeNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor/TagHelpers/HtmlAttributeNameAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor/TagHelpers/HtmlAttributeValueStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor/TagHelpers/HtmlAttributeValueStyle.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor/TagHelpers/HtmlTargetElementAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor/TagHelpers/HtmlTargetElementAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor/TagHelpers/ITagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor/TagHelpers/ITagHelper.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor/TagHelpers/ITagHelperComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor/TagHelpers/ITagHelperComponent.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor/TagHelpers/NullHtmlEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor/TagHelpers/NullHtmlEncoder.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor/TagHelpers/OutputElementHintAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor/TagHelpers/OutputElementHintAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor/TagHelpers/RestrictChildrenAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor/TagHelpers/RestrictChildrenAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor/TagHelpers/TagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor/TagHelpers/TagHelper.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor/TagHelpers/TagHelperAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor/TagHelpers/TagHelperAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor/TagHelpers/TagHelperAttributeList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor/TagHelpers/TagHelperAttributeList.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor/TagHelpers/TagHelperComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor/TagHelpers/TagHelperComponent.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor/TagHelpers/TagHelperContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor/TagHelpers/TagHelperContent.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor/TagHelpers/TagHelperContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor/TagHelpers/TagHelperContext.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor/TagHelpers/TagHelperOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor/TagHelpers/TagHelperOutput.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor/TagHelpers/TagMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor/TagHelpers/TagMode.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor/TagHelpers/TagStructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor/TagHelpers/TagStructure.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Razor/baseline.netcore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.AspNetCore.Razor/baseline.netcore.json -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Razor.Workspaces/DefaultErrorReporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.CodeAnalysis.Razor.Workspaces/DefaultErrorReporter.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Razor.Workspaces/DocumentKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.CodeAnalysis.Razor.Workspaces/DocumentKey.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Razor.Workspaces/Editor/EditorSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.CodeAnalysis.Razor.Workspaces/Editor/EditorSettings.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Razor.Workspaces/ErrorReporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.CodeAnalysis.Razor.Workspaces/ErrorReporter.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Razor.Workspaces/ForegroundDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.CodeAnalysis.Razor.Workspaces/ForegroundDispatcher.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Razor.Workspaces/Host/IDocumentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.CodeAnalysis.Razor.Workspaces/Host/IDocumentService.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Razor.Workspaces/Host/ISpanMappingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.CodeAnalysis.Razor.Workspaces/Host/ISpanMappingService.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Razor.Workspaces/IProjectEngineFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.CodeAnalysis.Razor.Workspaces/IProjectEngineFactory.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Razor.Workspaces/ProjectSystem/HostProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.CodeAnalysis.Razor.Workspaces/ProjectSystem/HostProject.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Razor.Workspaces/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.CodeAnalysis.Razor.Workspaces/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Razor.Workspaces/RazorCompletionItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.CodeAnalysis.Razor.Workspaces/RazorCompletionItem.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Razor.Workspaces/RazorCompletionItemKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.CodeAnalysis.Razor.Workspaces/RazorCompletionItemKind.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Razor.Workspaces/RazorSpanMappingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.CodeAnalysis.Razor.Workspaces/RazorSpanMappingService.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Razor.Workspaces/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.CodeAnalysis.Razor.Workspaces/Resources.resx -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Razor.Workspaces/SourceTextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.CodeAnalysis.Razor.Workspaces/SourceTextExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Razor.Workspaces/TagHelperResolutionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.CodeAnalysis.Razor.Workspaces/TagHelperResolutionResult.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Razor.Workspaces/TagHelperResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.CodeAnalysis.Razor.Workspaces/TagHelperResolver.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Razor/AssemblyIdentityEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.CodeAnalysis.Razor/AssemblyIdentityEqualityComparer.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Razor/CompilationTagHelperFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.CodeAnalysis.Razor/CompilationTagHelperFeature.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Razor/ComponentTagHelperDescriptorProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.CodeAnalysis.Razor/ComponentTagHelperDescriptorProvider.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Razor/DefaultMetadataReferenceFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.CodeAnalysis.Razor/DefaultMetadataReferenceFeature.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Razor/DefaultTagHelperDescriptorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.CodeAnalysis.Razor/DefaultTagHelperDescriptorFactory.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Razor/DefaultTagHelperDescriptorProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.CodeAnalysis.Razor/DefaultTagHelperDescriptorProvider.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Razor/FilePathComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.CodeAnalysis.Razor/FilePathComparer.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Razor/IMetadataReferenceFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.CodeAnalysis.Razor/IMetadataReferenceFeature.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Razor/Microsoft.CodeAnalysis.Razor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.CodeAnalysis.Razor/Microsoft.CodeAnalysis.Razor.csproj -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Razor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.CodeAnalysis.Razor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Razor/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.CodeAnalysis.Razor/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Razor/RazorDiagnosticFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.CodeAnalysis.Razor/RazorDiagnosticFactory.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Razor/RazorLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.CodeAnalysis.Razor/RazorLanguage.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Razor/RequiredAttributeParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.CodeAnalysis.Razor/RequiredAttributeParser.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Razor/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.CodeAnalysis.Razor/Resources.resx -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Razor/SourceSpanExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.CodeAnalysis.Razor/SourceSpanExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Razor/TagHelperTypeVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.CodeAnalysis.Razor/TagHelperTypeVisitor.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Razor/TagHelperTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.CodeAnalysis.Razor/TagHelperTypes.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Razor/TextChangeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.CodeAnalysis.Razor/TextChangeExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Razor/TextSpanExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.CodeAnalysis.Razor/TextSpanExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Razor/baseline.netcore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.CodeAnalysis.Razor/baseline.netcore.json -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Razor/baseline.netframework.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.CodeAnalysis.Razor/baseline.netframework.json -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Remote.Razor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.CodeAnalysis.Remote.Razor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Remote.Razor/RazorLanguageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.CodeAnalysis.Remote.Razor/RazorLanguageService.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Remote.Razor/RazorServiceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.CodeAnalysis.Remote.Razor/RazorServiceBase.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Remote.Razor/RazorServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.CodeAnalysis.Remote.Razor/RazorServices.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Remote.Razor/RemoteTagHelperResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.CodeAnalysis.Remote.Razor/RemoteTagHelperResolver.cs -------------------------------------------------------------------------------- /src/Microsoft.NET.Sdk.Razor/DotnetToolTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.NET.Sdk.Razor/DotnetToolTask.cs -------------------------------------------------------------------------------- /src/Microsoft.NET.Sdk.Razor/Microsoft.NET.Sdk.Razor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.NET.Sdk.Razor/Microsoft.NET.Sdk.Razor.csproj -------------------------------------------------------------------------------- /src/Microsoft.NET.Sdk.Razor/Microsoft.NET.Sdk.Razor.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.NET.Sdk.Razor/Microsoft.NET.Sdk.Razor.nuspec -------------------------------------------------------------------------------- /src/Microsoft.NET.Sdk.Razor/RazorGenerate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.NET.Sdk.Razor/RazorGenerate.cs -------------------------------------------------------------------------------- /src/Microsoft.NET.Sdk.Razor/RazorTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.NET.Sdk.Razor/RazorTagHelper.cs -------------------------------------------------------------------------------- /src/Microsoft.NET.Sdk.Razor/Sdk/Sdk.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.NET.Sdk.Razor/Sdk/Sdk.props -------------------------------------------------------------------------------- /src/Microsoft.NET.Sdk.Razor/Sdk/Sdk.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.NET.Sdk.Razor/Sdk/Sdk.targets -------------------------------------------------------------------------------- /src/Microsoft.NET.Sdk.Razor/baseline.netcore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.NET.Sdk.Razor/baseline.netcore.json -------------------------------------------------------------------------------- /src/Microsoft.NET.Sdk.Razor/baseline.netframework.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.NET.Sdk.Razor/baseline.netframework.json -------------------------------------------------------------------------------- /src/Microsoft.NET.Sdk.Razor/build/netstandard2.0/Rules/RazorGeneral.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.NET.Sdk.Razor/build/netstandard2.0/Rules/RazorGeneral.xaml -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/AcceptedCharacters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/AcceptedCharacters.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/AttributeCompletionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/AttributeCompletionContext.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/AttributeCompletionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/AttributeCompletionResult.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/BackgroundParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/BackgroundParser.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/BlockKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/BlockKind.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/BraceSmartIndenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/BraceSmartIndenter.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/BraceSmartIndenterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/BraceSmartIndenterFactory.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/BufferGraphExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/BufferGraphExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/ClassifiedSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/ClassifiedSpan.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/ContextChangeEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/ContextChangeEventArgs.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/ContextChangeKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/ContextChangeKind.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/DefaultCodeDocumentProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/DefaultCodeDocumentProvider.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/DefaultEditorSettingsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/DefaultEditorSettingsManager.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/DefaultImportDocumentManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/DefaultImportDocumentManager.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/DefaultProjectPathProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/DefaultProjectPathProvider.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/DefaultRazorDocumentManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/DefaultRazorDocumentManager.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/DefaultTagHelperFactsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/DefaultTagHelperFactsService.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/DefaultTagHelperResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/DefaultTagHelperResolver.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/DefaultTextBufferProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/DefaultTextBufferProvider.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/Documents/EditorDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/Documents/EditorDocument.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/Documents/FileChangeEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/Documents/FileChangeEventArgs.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/Documents/FileChangeKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/Documents/FileChangeKind.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/Documents/FileChangeTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/Documents/FileChangeTracker.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/EditorSettingsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/EditorSettingsManager.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/ElementCompletionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/ElementCompletionContext.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/ElementCompletionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/ElementCompletionResult.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/ImportChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/ImportChangedEventArgs.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/ImportDocumentManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/ImportDocumentManager.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/LiveShareWorkspaceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/LiveShareWorkspaceProvider.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/ProjectPathProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/ProjectPathProvider.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/RazorCodeDocumentProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/RazorCodeDocumentProvider.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/RazorDocumentManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/RazorDocumentManager.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/RazorEditorFactoryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/RazorEditorFactoryService.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/RazorIndentationFactsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/RazorIndentationFactsService.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/RazorSyntaxFactsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/RazorSyntaxFactsService.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/RazorSyntaxTreePartialParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/RazorSyntaxTreePartialParser.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/RazorTextBufferProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/RazorTextBufferProvider.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/Resources.resx -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/SpanKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/SpanKind.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/TagHelperCompletionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/TagHelperCompletionService.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/TagHelperFactsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/TagHelperFactsService.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/TagHelperSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/TagHelperSpan.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/TextBufferExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/TextBufferExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/TextBufferProjectService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/TextBufferProjectService.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/TextSnapshotProjectItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/TextSnapshotProjectItem.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/VisualStudioCompletionBroker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/VisualStudioCompletionBroker.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/VisualStudioDocumentTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/VisualStudioDocumentTracker.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/VisualStudioRazorParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/VisualStudioRazorParser.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Editor.Razor/VisualStudioWorkspaceAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Editor.Razor/VisualStudioWorkspaceAccessor.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.LanguageServices.Razor/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.LanguageServices.Razor/Resources.resx -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Mac.LanguageServices.Razor/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/Microsoft.VisualStudio.Mac.LanguageServices.Razor/Resources.resx -------------------------------------------------------------------------------- /src/RazorPageGenerator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/RazorPageGenerator/Program.cs -------------------------------------------------------------------------------- /src/RazorPageGenerator/RazorPageGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/RazorPageGenerator/RazorPageGenerator.csproj -------------------------------------------------------------------------------- /src/RazorPageGenerator/RazorPageGeneratorResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/src/RazorPageGenerator/RazorPageGeneratorResult.cs -------------------------------------------------------------------------------- /test/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/Directory.Build.props -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Test/MvcShim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Test/MvcShim.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Test/PageDirectiveTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Test/PageDirectiveTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/InheritsWithViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | @model MyModel 3 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/Inject.cshtml: -------------------------------------------------------------------------------- 1 | @inject MyApp MyPropertyName 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/InvalidNamespaceAtEOF.cshtml: -------------------------------------------------------------------------------- 1 | @namespace Test. -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/InvalidNamespaceAtEOF_DesignTime.mappings.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/MalformedPageDirective_DesignTime.mappings.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/Model.cshtml: -------------------------------------------------------------------------------- 1 | @model System.Collections.IEnumerable 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/RazorPageWithNoLeadingPageDirective.cshtml: -------------------------------------------------------------------------------- 1 |
Some text here.
2 | @page 3 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/RazorPageWithNoLeadingPageDirective_DesignTime.mappings.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Test/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Test/xunit.runner.json -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version1_X.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/InheritsWithViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @model MyModel 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version1_X.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/Inject.cshtml: -------------------------------------------------------------------------------- 1 | @inject MyApp MyPropertyName 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version1_X.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/InvalidNamespaceAtEOF.cshtml: -------------------------------------------------------------------------------- 1 | @namespace Test. -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version1_X.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/InvalidNamespaceAtEOF_DesignTime.mappings.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version1_X.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/Model.cshtml: -------------------------------------------------------------------------------- 1 | @model System.Collections.IEnumerable 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/InheritsWithViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | @model MyModel 3 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/Inject.cshtml: -------------------------------------------------------------------------------- 1 | @inject MyApp MyPropertyName 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/InvalidNamespaceAtEOF.cshtml: -------------------------------------------------------------------------------- 1 | @namespace Test. -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/InvalidNamespaceAtEOF_DesignTime.mappings.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/MalformedPageDirective_DesignTime.mappings.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/Model.cshtml: -------------------------------------------------------------------------------- 1 | @model System.Collections.IEnumerable 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Extensions.Version2_X.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/RazorPageWithNoLeadingPageDirective_DesignTime.mappings.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/DefaultRazorEngineTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/Microsoft.AspNetCore.Razor.Language.Test/DefaultRazorEngineTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/DirectiveDescriptorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/Microsoft.AspNetCore.Razor.Language.Test/DirectiveDescriptorTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/HtmlConventionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/Microsoft.AspNetCore.Razor.Language.Test/HtmlConventionsTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/Legacy/BaselineWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/Microsoft.AspNetCore.Razor.Language.Test/Legacy/BaselineWriter.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/Legacy/CSharpBlockTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/Microsoft.AspNetCore.Razor.Language.Test/Legacy/CSharpBlockTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/Legacy/CSharpErrorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/Microsoft.AspNetCore.Razor.Language.Test/Legacy/CSharpErrorTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/Legacy/HtmlBlockTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/Microsoft.AspNetCore.Razor.Language.Test/Legacy/HtmlBlockTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/Legacy/HtmlDocumentTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/Microsoft.AspNetCore.Razor.Language.Test/Legacy/HtmlDocumentTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/Legacy/HtmlErrorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/Microsoft.AspNetCore.Razor.Language.Test/Legacy/HtmlErrorTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/Legacy/HtmlTagsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/Microsoft.AspNetCore.Razor.Language.Test/Legacy/HtmlTagsTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/Legacy/RazorParserTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/Microsoft.AspNetCore.Razor.Language.Test/Legacy/RazorParserTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/Microsoft.AspNetCore.Razor.Language.Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/RazorCodeDocumentTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/Microsoft.AspNetCore.Razor.Language.Test/RazorCodeDocumentTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/RazorDiagnosticTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/Microsoft.AspNetCore.Razor.Language.Test/RazorDiagnosticTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/RazorEngineTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/Microsoft.AspNetCore.Razor.Language.Test/RazorEngineTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/RazorProjectEngineTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/Microsoft.AspNetCore.Razor.Language.Test/RazorProjectEngineTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/RazorProjectItemTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/Microsoft.AspNetCore.Razor.Language.Test/RazorProjectItemTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/RazorProjectTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/Microsoft.AspNetCore.Razor.Language.Test/RazorProjectTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/RazorSourceDocumentTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/Microsoft.AspNetCore.Razor.Language.Test/RazorSourceDocumentTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/RazorSyntaxTreeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/Microsoft.AspNetCore.Razor.Language.Test/RazorSyntaxTreeTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/RazorTemplateEngineTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/Microsoft.AspNetCore.Razor.Language.Test/RazorTemplateEngineTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/SourceChangeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/Microsoft.AspNetCore.Razor.Language.Test/SourceChangeTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/SourceLocationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/Microsoft.AspNetCore.Razor.Language.Test/SourceLocationTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/SourceSpanTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/Microsoft.AspNetCore.Razor.Language.Test/SourceSpanTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TagHelperBinderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/Microsoft.AspNetCore.Razor.Language.Test/TagHelperBinderTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/DefaultRazorProjectFileSystem/Home.cshtml: -------------------------------------------------------------------------------- 1 | home-content -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/DefaultRazorProjectFileSystem/Views/About/About.cshtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/DefaultRazorProjectFileSystem/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/DefaultRazorProjectFileSystem/Views/Home/Index.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/DefaultRazorProjectFileSystem/Views/Home/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/DefaultRazorProjectFileSystem/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/DefaultRazorProjectFileSystem/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/BasicIntegrationTest/CustomDirective.cshtml: -------------------------------------------------------------------------------- 1 | @test -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/BasicIntegrationTest/Empty.cshtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/BasicIntegrationTest/HelloWorld.cshtml: -------------------------------------------------------------------------------- 1 | Hello, World! -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/AddTagHelperDirective.cshtml: -------------------------------------------------------------------------------- 1 | @addTagHelper "*, TestAssembly" 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/CodeBlockAtEOF.cshtml: -------------------------------------------------------------------------------- 1 | @{ -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/EmptyCodeBlock.cshtml: -------------------------------------------------------------------------------- 1 | This is markup 2 | 3 | @{} -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/EmptyExplicitExpression.cshtml: -------------------------------------------------------------------------------- 1 | This is markup 2 | 3 | @() -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/EmptyImplicitExpression.cshtml: -------------------------------------------------------------------------------- 1 | This is markup 2 | 3 | @! -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/EmptyImplicitExpressionInCode.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | @ 3 | } -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/ExplicitExpression.cshtml: -------------------------------------------------------------------------------- 1 | 1 + 1 = @(1+1) -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/ExplicitExpressionAtEOF.cshtml: -------------------------------------------------------------------------------- 1 | This is markup 2 | 3 | @( -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/ExplicitExpressionWithMarkup.cshtml: -------------------------------------------------------------------------------- 1 |
@(@
-------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/HiddenSpansInCode.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | @@Da 3 | } -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/HtmlCommentWithQuote_Double.cshtml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/HtmlCommentWithQuote_Double_DesignTime.mappings.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/HtmlCommentWithQuote_Single.cshtml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/HtmlCommentWithQuote_Single_DesignTime.mappings.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/ImplicitExpressionAtEOF.cshtml: -------------------------------------------------------------------------------- 1 | This is markup 2 | 3 | @ -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Razor.Language.Test/TestFiles/IntegrationTests/CodeGenerationIntegrationTest/IncompleteTagHelper.cshtml: -------------------------------------------------------------------------------- 1 | @addTagHelper "*, TestAssembly" 2 | 3 |

3 | Footer goes here. -------------------------------------------------------------------------------- /test/RazorPageGenerator.Test/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/RazorPageGenerator.Test/xunit.runner.json -------------------------------------------------------------------------------- /test/testapps/AppWithP2PReference/AppWithP2PReference.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/AppWithP2PReference/AppWithP2PReference.csproj -------------------------------------------------------------------------------- /test/testapps/AppWithP2PReference/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/AppWithP2PReference/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /test/testapps/AppWithP2PReference/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/AppWithP2PReference/Program.cs -------------------------------------------------------------------------------- /test/testapps/AppWithP2PReference/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/AppWithP2PReference/Views/Home/About.cshtml -------------------------------------------------------------------------------- /test/testapps/AppWithP2PReference/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/AppWithP2PReference/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /test/testapps/AppWithP2PReference/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/AppWithP2PReference/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /test/testapps/AppWithP2PReference/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/AppWithP2PReference/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /test/testapps/AppWithP2PReference/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/AppWithP2PReference/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /test/testapps/AppWithP2PReference/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/AppWithP2PReference/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /test/testapps/ClassLibrary/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/ClassLibrary/Class1.cs -------------------------------------------------------------------------------- /test/testapps/ClassLibrary/ClassLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/ClassLibrary/ClassLibrary.csproj -------------------------------------------------------------------------------- /test/testapps/ClassLibrary/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/ClassLibrary/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /test/testapps/ClassLibrary/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/ClassLibrary/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /test/testapps/ClassLibrary2/Class2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/ClassLibrary2/Class2.cs -------------------------------------------------------------------------------- /test/testapps/ClassLibrary2/ClassLibrary2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/ClassLibrary2/ClassLibrary2.csproj -------------------------------------------------------------------------------- /test/testapps/ClassLibrary2/Views/Shared/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/ClassLibrary2/Views/Shared/Index.cshtml -------------------------------------------------------------------------------- /test/testapps/ClassLibrary2/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/ClassLibrary2/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /test/testapps/ClassLibraryMvc21/Areas/MyFeature/Pages/Page1.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/ClassLibraryMvc21/Areas/MyFeature/Pages/Page1.cshtml -------------------------------------------------------------------------------- /test/testapps/ClassLibraryMvc21/Areas/MyFeature/Pages/Page1.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/ClassLibraryMvc21/Areas/MyFeature/Pages/Page1.cshtml.cs -------------------------------------------------------------------------------- /test/testapps/ClassLibraryMvc21/ClassLibraryMvc21.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/ClassLibraryMvc21/ClassLibraryMvc21.csproj -------------------------------------------------------------------------------- /test/testapps/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/Directory.Build.props -------------------------------------------------------------------------------- /test/testapps/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/Directory.Build.targets -------------------------------------------------------------------------------- /test/testapps/LargeProject/LargeProject.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/LargeProject/LargeProject.csproj -------------------------------------------------------------------------------- /test/testapps/LargeProject/Views/Home/View000.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/LargeProject/Views/Home/View000.cshtml -------------------------------------------------------------------------------- /test/testapps/LargeProject/Views/Home/View001.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/LargeProject/Views/Home/View001.cshtml -------------------------------------------------------------------------------- /test/testapps/LargeProject/Views/Home/View002.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/LargeProject/Views/Home/View002.cshtml -------------------------------------------------------------------------------- /test/testapps/LargeProject/Views/Home/View003.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/LargeProject/Views/Home/View003.cshtml -------------------------------------------------------------------------------- /test/testapps/LargeProject/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/LargeProject/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /test/testapps/LargeProject/Views/Shared/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/LargeProject/Views/Shared/_ViewImports.cshtml -------------------------------------------------------------------------------- /test/testapps/LargeProject/Views/Shared/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/LargeProject/Views/Shared/_ViewStart.cshtml -------------------------------------------------------------------------------- /test/testapps/LinkedDir/LinkedErrorFile.cshtml: -------------------------------------------------------------------------------- 1 | @( -------------------------------------------------------------------------------- /test/testapps/LinkedDir/LinkedFile.cshtml: -------------------------------------------------------------------------------- 1 | @DateTime.UtcNow -------------------------------------------------------------------------------- /test/testapps/LinkedDir/LinkedFile2.cshtml: -------------------------------------------------------------------------------- 1 | @DateTime.UtcNow -------------------------------------------------------------------------------- /test/testapps/LinkedDir/LinkedFile3.cshtml: -------------------------------------------------------------------------------- 1 | @DateTime.UtcNow -------------------------------------------------------------------------------- /test/testapps/MvcWithComponents/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/MvcWithComponents/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /test/testapps/MvcWithComponents/MvcWithComponents.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/MvcWithComponents/MvcWithComponents.csproj -------------------------------------------------------------------------------- /test/testapps/MvcWithComponents/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/MvcWithComponents/Program.cs -------------------------------------------------------------------------------- /test/testapps/MvcWithComponents/TestComponent.razor: -------------------------------------------------------------------------------- 1 | Hello from component -------------------------------------------------------------------------------- /test/testapps/MvcWithComponents/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Home Page"; 3 | } 4 | 5 | Hello world! -------------------------------------------------------------------------------- /test/testapps/MvcWithComponents/Views/Shared/NavMenu.razor: -------------------------------------------------------------------------------- 1 | NavMenu content 2 | 3 | -------------------------------------------------------------------------------- /test/testapps/MvcWithComponents/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/MvcWithComponents/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /test/testapps/MvcWithComponents/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/MvcWithComponents/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /test/testapps/RazorTest.Introspection.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/RazorTest.Introspection.targets -------------------------------------------------------------------------------- /test/testapps/SimpleMvc/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/SimpleMvc/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /test/testapps/SimpleMvc/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/SimpleMvc/Program.cs -------------------------------------------------------------------------------- /test/testapps/SimpleMvc/SimpleMvc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/SimpleMvc/SimpleMvc.csproj -------------------------------------------------------------------------------- /test/testapps/SimpleMvc/SimpleTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/SimpleMvc/SimpleTagHelper.cs -------------------------------------------------------------------------------- /test/testapps/SimpleMvc/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/SimpleMvc/Views/Home/About.cshtml -------------------------------------------------------------------------------- /test/testapps/SimpleMvc/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/SimpleMvc/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /test/testapps/SimpleMvc/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/SimpleMvc/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /test/testapps/SimpleMvc/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/SimpleMvc/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /test/testapps/SimpleMvc/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/SimpleMvc/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /test/testapps/SimpleMvc/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/SimpleMvc/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /test/testapps/SimpleMvc/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/SimpleMvc/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /test/testapps/SimpleMvc/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/SimpleMvc/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /test/testapps/SimpleMvc/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/SimpleMvc/wwwroot/css/site.css -------------------------------------------------------------------------------- /test/testapps/SimpleMvc/wwwroot/js/SimpleMvc.js: -------------------------------------------------------------------------------- 1 | // This is a test file 2 | -------------------------------------------------------------------------------- /test/testapps/SimpleMvc21/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/SimpleMvc21/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /test/testapps/SimpleMvc21/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/SimpleMvc21/Program.cs -------------------------------------------------------------------------------- /test/testapps/SimpleMvc21/SimpleMvc21.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/SimpleMvc21/SimpleMvc21.csproj -------------------------------------------------------------------------------- /test/testapps/SimpleMvc21/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/SimpleMvc21/Views/Home/About.cshtml -------------------------------------------------------------------------------- /test/testapps/SimpleMvc21/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/SimpleMvc21/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /test/testapps/SimpleMvc21/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/SimpleMvc21/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /test/testapps/SimpleMvc21/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/SimpleMvc21/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /test/testapps/SimpleMvc21/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/SimpleMvc21/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /test/testapps/SimpleMvc21/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/SimpleMvc21/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /test/testapps/SimpleMvcFSharp/Models/ErrorViewModel.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/SimpleMvcFSharp/Models/ErrorViewModel.fs -------------------------------------------------------------------------------- /test/testapps/SimpleMvcFSharp/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/SimpleMvcFSharp/Program.fs -------------------------------------------------------------------------------- /test/testapps/SimpleMvcFSharp/SimpleMvcFSharp.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/SimpleMvcFSharp/SimpleMvcFSharp.fsproj -------------------------------------------------------------------------------- /test/testapps/SimpleMvcFSharp/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/SimpleMvcFSharp/Views/Home/About.cshtml -------------------------------------------------------------------------------- /test/testapps/SimpleMvcFSharp/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/SimpleMvcFSharp/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /test/testapps/SimplePages/Areas/Products/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/SimplePages/Areas/Products/Pages/Index.cshtml -------------------------------------------------------------------------------- /test/testapps/SimplePages/Areas/Products/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/SimplePages/Areas/Products/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /test/testapps/SimplePages/Areas/Products/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/SimplePages/Areas/Products/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /test/testapps/SimplePages/Pages/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/SimplePages/Pages/About.cshtml -------------------------------------------------------------------------------- /test/testapps/SimplePages/Pages/About.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/SimplePages/Pages/About.cshtml.cs -------------------------------------------------------------------------------- /test/testapps/SimplePages/Pages/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/SimplePages/Pages/Contact.cshtml -------------------------------------------------------------------------------- /test/testapps/SimplePages/Pages/Contact.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/SimplePages/Pages/Contact.cshtml.cs -------------------------------------------------------------------------------- /test/testapps/SimplePages/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/SimplePages/Pages/Index.cshtml -------------------------------------------------------------------------------- /test/testapps/SimplePages/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/SimplePages/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /test/testapps/SimplePages/Pages/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/SimplePages/Pages/_Layout.cshtml -------------------------------------------------------------------------------- /test/testapps/SimplePages/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/SimplePages/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /test/testapps/SimplePages/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/SimplePages/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /test/testapps/SimplePages/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/SimplePages/Program.cs -------------------------------------------------------------------------------- /test/testapps/SimplePages/SimplePages.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/test/testapps/SimplePages/SimplePages.csproj -------------------------------------------------------------------------------- /tooling/Microsoft.VisualStudio.Mac.RazorAddin/AddinMetadata.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/tooling/Microsoft.VisualStudio.Mac.RazorAddin/AddinMetadata.props -------------------------------------------------------------------------------- /tooling/Microsoft.VisualStudio.Mac.RazorAddin/RazorAddin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/tooling/Microsoft.VisualStudio.Mac.RazorAddin/RazorAddin.cs -------------------------------------------------------------------------------- /tooling/Microsoft.VisualStudio.Mac.RazorAddin/RazorProjectExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/tooling/Microsoft.VisualStudio.Mac.RazorAddin/RazorProjectExtension.cs -------------------------------------------------------------------------------- /tooling/Microsoft.VisualStudio.RazorExtension/NotifyPropertyChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/tooling/Microsoft.VisualStudio.RazorExtension/NotifyPropertyChanged.cs -------------------------------------------------------------------------------- /tooling/Microsoft.VisualStudio.RazorExtension/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/tooling/Microsoft.VisualStudio.RazorExtension/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /tooling/Microsoft.VisualStudio.RazorExtension/RazorPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/tooling/Microsoft.VisualStudio.RazorExtension/RazorPackage.cs -------------------------------------------------------------------------------- /tooling/Microsoft.VisualStudio.RazorExtension/RazorPackage.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/tooling/Microsoft.VisualStudio.RazorExtension/RazorPackage.vsct -------------------------------------------------------------------------------- /tooling/Microsoft.VisualStudio.RazorExtension/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/tooling/Microsoft.VisualStudio.RazorExtension/RelayCommand.cs -------------------------------------------------------------------------------- /tooling/Microsoft.VisualStudio.RazorExtension/Resources/RazorPackage.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/tooling/Microsoft.VisualStudio.RazorExtension/Resources/RazorPackage.ico -------------------------------------------------------------------------------- /tooling/Microsoft.VisualStudio.RazorExtension/VSPackage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/tooling/Microsoft.VisualStudio.RazorExtension/VSPackage.resx -------------------------------------------------------------------------------- /tooling/Microsoft.VisualStudio.RazorExtension/WebConfiguration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/tooling/Microsoft.VisualStudio.RazorExtension/WebConfiguration.png -------------------------------------------------------------------------------- /version.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Razor/HEAD/version.props --------------------------------------------------------------------------------