├── .appveyor.yml ├── .editorconfig ├── .gitattributes ├── .github └── ISSUE_TEMPLATE ├── .gitignore ├── .travis.yml ├── .vsts-pipelines ├── builds │ ├── ci-internal.yml │ └── ci-public.yml └── templates │ ├── phases │ └── default-build.yml │ └── project-ci.yml ├── CONTRIBUTING.md ├── Directory.Build.props ├── Directory.Build.targets ├── LICENSE.txt ├── Mvc.NoFun.sln ├── Mvc.sln ├── NuGet.config ├── NuGetPackageVerifier.json ├── README.md ├── Settings.StyleCop ├── benchmarkapps ├── BasicApi │ ├── BasicApi.csproj │ ├── Controllers │ │ ├── PetController.cs │ │ └── TokenController.cs │ ├── Migrations │ │ ├── 20180609000420_InitialCreate.Designer.cs │ │ ├── 20180609000420_InitialCreate.cs │ │ └── BasicApiContextModelSnapshot.cs │ ├── Models │ │ ├── BasicApiContext.cs │ │ ├── Category.cs │ │ ├── Image.cs │ │ ├── Pet.cs │ │ └── Tag.cs │ ├── Startup.cs │ ├── benchmarks.json │ ├── getWithToken.lua │ ├── postJsonWithToken.lua │ └── runtimeconfig.template.json ├── BasicViews │ ├── BasicViews.csproj │ ├── BasicViewsContext.cs │ ├── Components │ │ └── CurrentUser.cs │ ├── Controllers │ │ └── HomeController.cs │ ├── Migrations │ │ ├── 20180609000611_InitialCreate.Designer.cs │ │ ├── 20180609000611_InitialCreate.cs │ │ └── BasicViewsContextModelSnapshot.cs │ ├── Person.cs │ ├── Startup.cs │ ├── Views │ │ ├── Home │ │ │ ├── HtmlHelpers.cshtml │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ └── _Layout.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── benchmarks.json │ ├── post.lua │ ├── postWithToken.lua │ ├── runtimeconfig.template.json │ ├── web.config │ └── wwwroot │ │ ├── css │ │ ├── site.css │ │ └── site.min.css │ │ └── js │ │ ├── site.js │ │ └── site.min.js ├── README.md └── RazorRendering │ ├── Data │ ├── DataA.cs │ └── DataB.cs │ ├── Pages │ ├── Category │ │ ├── PageA.cshtml │ │ ├── PageA.cshtml.cs │ │ └── _Subcategories.cshtml │ ├── Page.cs │ ├── Shared │ │ └── _Layout.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── RazorRendering.csproj │ ├── Readme.md │ └── Startup.cs ├── benchmarks ├── Microsoft.AspNetCore.Mvc.Performance.Views │ ├── HelperExtensions.cs │ ├── Microsoft.AspNetCore.Mvc.Performance.Views.csproj │ ├── ViewAssemblyMarker.cs │ └── Views │ │ ├── HelloWorld.cshtml │ │ ├── HelperDynamic.cshtml │ │ ├── HelperExtensions.cshtml │ │ ├── HelperPartialAsync.cshtml │ │ ├── HelperPartialSync.cshtml │ │ ├── HelperPartialTagHelper.cshtml │ │ ├── HelperPartial_Partial.cshtml │ │ └── HelperTyped.cshtml └── Microsoft.AspNetCore.Mvc.Performance │ ├── ActionSelectorBenchmark.cs │ ├── AssemblyInfo.cs │ ├── HelperPerformanceBenchmark.cs │ ├── Microsoft.AspNetCore.Mvc.Performance.csproj │ ├── MvcEndpointDatasourceBenchmark.cs │ ├── RuntimePerformanceBenchmarkBase.cs │ ├── ValidationVisitorBenchmarkBase.cs │ ├── ValidationVisitorByteArrayBenchmark.cs │ ├── ValidationVisitorModelWithValidatedProperties.cs │ └── readme.md ├── global.json ├── korebuild-lock.txt ├── korebuild.json ├── run.cmd ├── run.ps1 ├── run.sh ├── runWithProcDump.ps1 ├── samples └── MvcSandbox │ ├── .bowerrc │ ├── .gitignore │ ├── Controllers │ ├── HomeController.cs │ └── LoginController.cs │ ├── HealthChecks │ └── HealthChecksEndpointRouteBuilderExtensions.cs │ ├── Models │ ├── Index.cs │ └── TestModel.cs │ ├── MvcSandbox.csproj │ ├── Pages │ ├── PagesHome.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── Startup.cs │ └── Views │ ├── Home │ └── Index.cshtml │ ├── Shared │ └── _Layout.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── src ├── Directory.Build.props ├── GetDocumentInsider │ ├── AnsiConsole.cs │ ├── AnsiConstants.cs │ ├── AnsiTextWriter.cs │ ├── CommandException.cs │ ├── CommandLineUtils │ │ ├── CommandArgument.cs │ │ ├── CommandLineApplication.cs │ │ ├── CommandLineApplicationExtensions.cs │ │ ├── CommandOption.cs │ │ ├── CommandOptionType.cs │ │ └── CommandParsingException.cs │ ├── Commands │ │ ├── CommandBase.cs │ │ ├── GetDocumentCommand.cs │ │ ├── GetDocumentCommandContext.cs │ │ ├── GetDocumentCommandWorker.cs │ │ ├── HelpCommandBase.cs │ │ └── ProjectCommandBase.cs │ ├── GetDocumentInsider.csproj │ ├── ProductInfo.cs │ ├── Program.cs │ ├── Properties │ │ └── Resources.Designer.cs │ ├── Reporter.cs │ └── Resources.resx ├── Microsoft.AspNetCore.Mvc.Abstractions │ ├── Abstractions │ │ ├── ActionDescriptor.cs │ │ ├── ActionDescriptorExtensions.cs │ │ ├── ActionDescriptorProviderContext.cs │ │ ├── ActionInvokerProviderContext.cs │ │ ├── IActionDescriptorProvider.cs │ │ ├── IActionInvoker.cs │ │ ├── IActionInvokerProvider.cs │ │ └── ParameterDescriptor.cs │ ├── ActionConstraints │ │ ├── ActionConstraintContext.cs │ │ ├── ActionConstraintItem.cs │ │ ├── ActionConstraintProviderContext.cs │ │ ├── ActionSelectorCandidate.cs │ │ ├── IActionConstraint.cs │ │ ├── IActionConstraintFactory.cs │ │ ├── IActionConstraintMetadata.cs │ │ └── IActionConstraintProvider.cs │ ├── ActionContext.cs │ ├── ApiExplorer │ │ ├── ApiDescription.cs │ │ ├── ApiDescriptionProviderContext.cs │ │ ├── ApiParameterDescription.cs │ │ ├── ApiParameterRouteInfo.cs │ │ ├── ApiRequestFormat.cs │ │ ├── ApiResponseFormat.cs │ │ ├── ApiResponseType.cs │ │ └── IApiDescriptionProvider.cs │ ├── Authorization │ │ └── IAllowAnonymousFilter.cs │ ├── Filters │ │ ├── ActionExecutedContext.cs │ │ ├── ActionExecutingContext.cs │ │ ├── ActionExecutionDelegate.cs │ │ ├── AuthorizationFilterContext.cs │ │ ├── ExceptionContext.cs │ │ ├── FilterContext.cs │ │ ├── FilterDescriptor.cs │ │ ├── FilterItem.cs │ │ ├── FilterProviderContext.cs │ │ ├── IActionFilter.cs │ │ ├── IAlwaysRunResultFilter.cs │ │ ├── IAsyncActionFilter.cs │ │ ├── IAsyncAlwaysRunResultFilter.cs │ │ ├── IAsyncAuthorizationFilter.cs │ │ ├── IAsyncExceptionFilter.cs │ │ ├── IAsyncResourceFilter.cs │ │ ├── IAsyncResultFilter.cs │ │ ├── IAuthorizationFilter.cs │ │ ├── IExceptionFilter.cs │ │ ├── IFilterContainer.cs │ │ ├── IFilterFactory.cs │ │ ├── IFilterMetadata.cs │ │ ├── IFilterProvider.cs │ │ ├── IOrderedFilter.cs │ │ ├── IResourceFilter.cs │ │ ├── IResultFilter.cs │ │ ├── ResourceExecutedContext.cs │ │ ├── ResourceExecutingContext.cs │ │ ├── ResourceExecutionDelegate.cs │ │ ├── ResultExecutedContext.cs │ │ ├── ResultExecutingContext.cs │ │ └── ResultExecutionDelegate.cs │ ├── Formatters │ │ ├── FormatterCollection.cs │ │ ├── IInputFormatter.cs │ │ ├── IInputFormatterExceptionPolicy.cs │ │ ├── IOutputFormatter.cs │ │ ├── InputFormatterContext.cs │ │ ├── InputFormatterException.cs │ │ ├── InputFormatterExceptionPolicy.cs │ │ ├── InputFormatterResult.cs │ │ ├── OutputFormatterCanWriteContext.cs │ │ └── OutputFormatterWriteContext.cs │ ├── IActionResult.cs │ ├── IUrlHelper.cs │ ├── Microsoft.AspNetCore.Mvc.Abstractions.csproj │ ├── ModelBinding │ │ ├── BindingInfo.cs │ │ ├── BindingSource.cs │ │ ├── CompositeBindingSource.cs │ │ ├── EnumGroupAndName.cs │ │ ├── IBinderTypeProviderMetadata.cs │ │ ├── IBindingSourceMetadata.cs │ │ ├── IModelBinder.cs │ │ ├── IModelBinderProvider.cs │ │ ├── IModelMetadataProvider.cs │ │ ├── IModelNameProvider.cs │ │ ├── IPropertyFilterProvider.cs │ │ ├── IRequestPredicateProvider.cs │ │ ├── IValueProvider.cs │ │ ├── IValueProviderFactory.cs │ │ ├── Metadata │ │ │ ├── ModelBindingMessageProvider.cs │ │ │ ├── ModelMetadataIdentity.cs │ │ │ └── ModelMetadataKind.cs │ │ ├── ModelBinderProviderContext.cs │ │ ├── ModelBindingContext.cs │ │ ├── ModelBindingResult.cs │ │ ├── ModelError.cs │ │ ├── ModelErrorCollection.cs │ │ ├── ModelMetadata.cs │ │ ├── ModelMetadataProvider.cs │ │ ├── ModelPropertyCollection.cs │ │ ├── ModelStateDictionary.cs │ │ ├── ModelStateEntry.cs │ │ ├── ModelValidationState.cs │ │ ├── TooManyModelErrorsException.cs │ │ ├── Validation │ │ │ ├── ClientModelValidationContext.cs │ │ │ ├── ClientValidatorItem.cs │ │ │ ├── ClientValidatorProviderContext.cs │ │ │ ├── IClientModelValidator.cs │ │ │ ├── IClientModelValidatorProvider.cs │ │ │ ├── IModelValidator.cs │ │ │ ├── IModelValidatorProvider.cs │ │ │ ├── IPropertyValidationFilter.cs │ │ │ ├── IValidationStrategy.cs │ │ │ ├── ModelValidationContext.cs │ │ │ ├── ModelValidationContextBase.cs │ │ │ ├── ModelValidationResult.cs │ │ │ ├── ModelValidatorProviderContext.cs │ │ │ ├── ValidationEntry.cs │ │ │ ├── ValidationStateDictionary.cs │ │ │ ├── ValidationStateEntry.cs │ │ │ └── ValidatorItem.cs │ │ ├── ValueProviderFactoryContext.cs │ │ └── ValueProviderResult.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Resources.Designer.cs │ ├── Resources.resx │ ├── Routing │ │ ├── AttributeRouteInfo.cs │ │ ├── UrlActionContext.cs │ │ └── UrlRouteContext.cs │ └── baseline.netcore.json ├── Microsoft.AspNetCore.Mvc.Analyzers │ ├── AttributesShouldNotBeAppliedToPageModelAnalyzer.cs │ ├── AvoidHtmlPartialAnalyzer.cs │ ├── CodeAnalysisExtensions.cs │ ├── DiagnosticDescriptors.cs │ ├── Microsoft.AspNetCore.Mvc.Analyzers.csproj │ ├── Microsoft.AspNetCore.Mvc.Analyzers.nuspec │ ├── MvcFacts.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SymbolNames.cs │ ├── TopLevelParameterNameAnalyzer.cs │ ├── ViewFeatureAnalyzerBase.cs │ └── ViewFeaturesAnalyzerContext.cs ├── Microsoft.AspNetCore.Mvc.Api.Analyzers │ ├── ActualApiResponseMetadata.cs │ ├── ActualApiResponseMetadataFactory.cs │ ├── AddResponseTypeAttributeCodeFixAction.cs │ ├── AddResponseTypeAttributeCodeFixProvider.cs │ ├── ApiActionsDoNotRequireExplicitModelValidationCheckAnalyzer.cs │ ├── ApiActionsDoNotRequireExplicitModelValidationCodeFixProvider.cs │ ├── ApiControllerFacts.cs │ ├── ApiControllerSymbolCache.cs │ ├── ApiConventionAnalyzer.cs │ ├── ApiDiagnosticDescriptors.cs │ ├── ApiSymbolNames.cs │ ├── DeclaredApiResponseMetadata.cs │ ├── Microsoft.AspNetCore.Mvc.Api.Analyzers.csproj │ ├── Microsoft.AspNetCore.Mvc.Api.Analyzers.nuspec │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SymbolApiConventionMatcher.cs │ └── SymbolApiResponseMetadataProvider.cs ├── Microsoft.AspNetCore.Mvc.ApiExplorer │ ├── ApiDescriptionExtensions.cs │ ├── ApiDescriptionGroup.cs │ ├── ApiDescriptionGroupCollection.cs │ ├── ApiDescriptionGroupCollectionProvider.cs │ ├── ApiParameterContext.cs │ ├── ApiResponseTypeProvider.cs │ ├── DefaultApiDescriptionProvider.cs │ ├── DependencyInjection │ │ └── MvcApiExplorerMvcCoreBuilderExtensions.cs │ ├── IApiDescriptionGroupCollectionProvider.cs │ ├── Microsoft.AspNetCore.Mvc.ApiExplorer.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── baseline.netcore.json ├── Microsoft.AspNetCore.Mvc.Core │ ├── AcceptVerbsAttribute.cs │ ├── AcceptedAtActionResult.cs │ ├── AcceptedAtRouteResult.cs │ ├── AcceptedResult.cs │ ├── ActionConstraints │ │ ├── ActionConstraintCache.cs │ │ ├── ActionMethodSelectorAttribute.cs │ │ ├── DefaultActionConstraintProvider.cs │ │ ├── HttpMethodActionConstraint.cs │ │ └── IConsumesActionConstraint.cs │ ├── ActionContextAttribute.cs │ ├── ActionNameAttribute.cs │ ├── ActionResult.cs │ ├── ActionResultOfT.cs │ ├── AntiforgeryValidationFailedResult.cs │ ├── ApiBehaviorOptions.cs │ ├── ApiControllerAttribute.cs │ ├── ApiConventionMethodAttribute.cs │ ├── ApiConventionTypeAttribute.cs │ ├── ApiExplorer │ │ ├── ApiConventionMatcher.cs │ │ ├── ApiConventionNameMatchAttribute.cs │ │ ├── ApiConventionNameMatchBehavior.cs │ │ ├── ApiConventionResult.cs │ │ ├── ApiConventionTypeMatchAttribute.cs │ │ ├── ApiConventionTypeMatchBehavior.cs │ │ ├── ApiDescriptionActionData.cs │ │ ├── IApiDefaultResponseMetadataProvider.cs │ │ ├── IApiDescriptionGroupNameProvider.cs │ │ ├── IApiDescriptionVisibilityProvider.cs │ │ ├── IApiRequestFormatMetadataProvider.cs │ │ ├── IApiRequestMetadataProvider.cs │ │ ├── IApiResponseMetadataProvider.cs │ │ └── IApiResponseTypeMetadataProvider.cs │ ├── ApiExplorerSettingsAttribute.cs │ ├── ApplicationModels │ │ ├── ActionAttributeRouteModel.cs │ │ ├── ActionModel.cs │ │ ├── ApiBehaviorApplicationModelProvider.cs │ │ ├── ApiConventionApplicationModelConvention.cs │ │ ├── ApiExplorerModel.cs │ │ ├── ApiVisibilityConvention.cs │ │ ├── ApplicationModel.cs │ │ ├── ApplicationModelConventions.cs │ │ ├── ApplicationModelFactory.cs │ │ ├── ApplicationModelProviderContext.cs │ │ ├── AttributeRouteModel.cs │ │ ├── AuthorizationApplicationModelProvider.cs │ │ ├── ClientErrorResultFilterConvention.cs │ │ ├── ConsumesConstraintForFormFileParameterConvention.cs │ │ ├── ControllerActionDescriptorBuilder.cs │ │ ├── ControllerActionDescriptorProvider.cs │ │ ├── ControllerModel.cs │ │ ├── DefaultApplicationModelProvider.cs │ │ ├── IActionModelConvention.cs │ │ ├── IApiExplorerModel.cs │ │ ├── IApplicationModelConvention.cs │ │ ├── IApplicationModelProvider.cs │ │ ├── IBindingModel.cs │ │ ├── ICommonModel.cs │ │ ├── IControllerModelConvention.cs │ │ ├── IFilterModel.cs │ │ ├── IParameterModelBaseConvention.cs │ │ ├── IParameterModelConvention.cs │ │ ├── IPropertyModel.cs │ │ ├── InferParameterBindingInfoConvention.cs │ │ ├── InvalidModelStateFilterConvention.cs │ │ ├── ParameterModel.cs │ │ ├── ParameterModelBase.cs │ │ ├── PropertyModel.cs │ │ ├── RouteTokenTransformerConvention.cs │ │ └── SelectorModel.cs │ ├── ApplicationParts │ │ ├── ApplicationAssembliesProvider.cs │ │ ├── ApplicationPart.cs │ │ ├── ApplicationPartFactory.cs │ │ ├── ApplicationPartManager.cs │ │ ├── AssemblyPart.cs │ │ ├── DefaultApplicationPartFactory.cs │ │ ├── IApplicationFeatureProvider.cs │ │ ├── IApplicationFeatureProviderOfT.cs │ │ ├── IApplicationPartTypeProvider.cs │ │ ├── ICompilationReferencesProvider.cs │ │ ├── NullApplicationPartFactory.cs │ │ ├── ProvideApplicationPartFactoryAttribute.cs │ │ └── RelatedAssemblyAttribute.cs │ ├── AreaAttribute.cs │ ├── Authorization │ │ ├── AllowAnonymousFilter.cs │ │ └── AuthorizeFilter.cs │ ├── BadRequestObjectResult.cs │ ├── BadRequestResult.cs │ ├── BindAttribute.cs │ ├── BindPropertiesAttribute.cs │ ├── BindPropertyAttribute.cs │ ├── Builder │ │ ├── DefaultEndpointConventionBuilder.cs │ │ ├── MvcApplicationBuilderExtensions.cs │ │ ├── MvcAreaRouteBuilderExtensions.cs │ │ ├── MvcEndpointInfo.cs │ │ └── MvcEndpointRouteBuilderExtensions.cs │ ├── CacheProfile.cs │ ├── ChallengeResult.cs │ ├── ClientErrorData.cs │ ├── CompatibilityVersion.cs │ ├── ConflictObjectResult.cs │ ├── ConflictResult.cs │ ├── ConsumesAttribute.cs │ ├── ContentResult.cs │ ├── ControllerAttribute.cs │ ├── ControllerBase.cs │ ├── ControllerContext.cs │ ├── ControllerContextAttribute.cs │ ├── Controllers │ │ ├── ControllerActionDescriptor.cs │ │ ├── ControllerActivatorProvider.cs │ │ ├── ControllerBinderDelegate.cs │ │ ├── ControllerBinderDelegateProvider.cs │ │ ├── ControllerBoundPropertyDescriptor.cs │ │ ├── ControllerFactoryProvider.cs │ │ ├── ControllerFeature.cs │ │ ├── ControllerFeatureProvider.cs │ │ ├── ControllerParameterDescriptor.cs │ │ ├── DefaultControllerActivator.cs │ │ ├── DefaultControllerFactory.cs │ │ ├── DefaultControllerPropertyActivator.cs │ │ ├── IControllerActivator.cs │ │ ├── IControllerActivatorProvider.cs │ │ ├── IControllerFactory.cs │ │ ├── IControllerFactoryProvider.cs │ │ ├── IControllerPropertyActivatorFactory.cs │ │ └── ServiceBasedControllerActivator.cs │ ├── CreatedAtActionResult.cs │ ├── CreatedAtRouteResult.cs │ ├── CreatedResult.cs │ ├── DefaultApiConventions.cs │ ├── DependencyInjection │ │ ├── ApiBehaviorOptionsSetup.cs │ │ ├── ApplicationModelConventionExtensions.cs │ │ ├── IMvcBuilder.cs │ │ ├── IMvcCoreBuilder.cs │ │ ├── MvcBuilder.cs │ │ ├── MvcCoreBuilder.cs │ │ ├── MvcCoreMvcBuilderExtensions.cs │ │ ├── MvcCoreMvcCoreBuilderExtensions.cs │ │ ├── MvcCoreRouteOptionsSetup.cs │ │ ├── MvcCoreServiceCollectionExtensions.cs │ │ └── MvcMarkerService.cs │ ├── DisableRequestSizeLimitAttribute.cs │ ├── EmptyResult.cs │ ├── FileContentResult.cs │ ├── FileResult.cs │ ├── FileStreamResult.cs │ ├── Filters │ │ ├── ActionFilterAttribute.cs │ │ ├── ControllerActionFilter.cs │ │ ├── ControllerResultFilter.cs │ │ ├── DefaultFilterProvider.cs │ │ ├── DisableRequestSizeLimitFilter.cs │ │ ├── ExceptionFilterAttribute.cs │ │ ├── FilterCollection.cs │ │ ├── FilterCursor.cs │ │ ├── FilterCursorItem.cs │ │ ├── FilterDescriptorOrderComparer.cs │ │ ├── FilterFactory.cs │ │ ├── FilterFactoryResult.cs │ │ ├── FilterScope.cs │ │ ├── IMiddlewareFilterFeature.cs │ │ ├── IResponseCacheFilter.cs │ │ ├── MiddlewareFilter.cs │ │ ├── MiddlewareFilterAttribute.cs │ │ ├── MiddlewareFilterBuilder.cs │ │ ├── MiddlewareFilterBuilderStartupFilter.cs │ │ ├── MiddlewareFilterConfigurationProvider.cs │ │ ├── MiddlewareFilterFeature.cs │ │ ├── RequestFormLimitsFilter.cs │ │ ├── RequestSizeLimitFilter.cs │ │ ├── ResponseCacheFilter.cs │ │ ├── ResponseCacheFilterExecutor.cs │ │ └── ResultFilterAttribute.cs │ ├── ForbidResult.cs │ ├── FormatFilterAttribute.cs │ ├── Formatters │ │ ├── AcceptHeaderParser.cs │ │ ├── FormatFilter.cs │ │ ├── FormatterMappings.cs │ │ ├── HttpNoContentOutputFormatter.cs │ │ ├── HttpParseResult.cs │ │ ├── HttpTokenParsingRules.cs │ │ ├── IFormatFilter.cs │ │ ├── InputFormatter.cs │ │ ├── MediaType.cs │ │ ├── MediaTypeCollection.cs │ │ ├── MediaTypeSegmentWithQuality.cs │ │ ├── OutputFormatter.cs │ │ ├── ResponseContentTypeHelper.cs │ │ ├── StreamOutputFormatter.cs │ │ ├── StringOutputFormatter.cs │ │ ├── TextInputFormatter.cs │ │ └── TextOutputFormatter.cs │ ├── FromBodyAttribute.cs │ ├── FromFormAttribute.cs │ ├── FromHeaderAttribute.cs │ ├── FromQueryAttribute.cs │ ├── FromRouteAttribute.cs │ ├── FromServicesAttribute.cs │ ├── HttpDeleteAttribute.cs │ ├── HttpGetAttribute.cs │ ├── HttpHeadAttribute.cs │ ├── HttpOptionsAttribute.cs │ ├── HttpPatchAttribute.cs │ ├── HttpPostAttribute.cs │ ├── HttpPutAttribute.cs │ ├── IApiBehaviorMetadata.cs │ ├── IDesignTimeMvcBuilderConfiguration.cs │ ├── IRequestFormLimitsPolicy.cs │ ├── IRequestSizePolicy.cs │ ├── Infrastructure │ │ ├── ActionContextAccessor.cs │ │ ├── ActionDescriptorCollection.cs │ │ ├── ActionDescriptorCollectionProvider.cs │ │ ├── ActionInvokerFactory.cs │ │ ├── ActionMethodExecutor.cs │ │ ├── ActionResultObjectValueAttribute.cs │ │ ├── ActionResultStatusCodeAttribute.cs │ │ ├── ActionResultTypeMapper.cs │ │ ├── ActionSelector.cs │ │ ├── AmbiguousActionException.cs │ │ ├── ClientErrorResultFilter.cs │ │ ├── ClientErrorResultFilterFactory.cs │ │ ├── CompatibilitySwitch.cs │ │ ├── ConfigureCompatibilityOptions.cs │ │ ├── ContentResultExecutor.cs │ │ ├── ControllerActionInvoker.cs │ │ ├── ControllerActionInvokerCache.cs │ │ ├── ControllerActionInvokerCacheEntry.cs │ │ ├── ControllerActionInvokerProvider.cs │ │ ├── CopyOnWriteList.cs │ │ ├── DefaultActionDescriptorCollectionProvider.cs │ │ ├── DefaultOutputFormatterSelector.cs │ │ ├── DefaultStatusCodeAttribute.cs │ │ ├── FileContentResultExecutor.cs │ │ ├── FileResultExecutorBase.cs │ │ ├── FileStreamResultExecutor.cs │ │ ├── IActionContextAccessor.cs │ │ ├── IActionDescriptorChangeProvider.cs │ │ ├── IActionDescriptorCollectionProvider.cs │ │ ├── IActionInvokerFactory.cs │ │ ├── IActionResultExecutor.cs │ │ ├── IActionResultTypeMapper.cs │ │ ├── IActionSelector.cs │ │ ├── IAntiforgeryValidationFailedResult.cs │ │ ├── IClientErrorActionResult.cs │ │ ├── IClientErrorFactory.cs │ │ ├── ICompatibilitySwitch.cs │ │ ├── IConvertToActionResult.cs │ │ ├── IHttpRequestStreamReaderFactory.cs │ │ ├── IHttpResponseStreamWriterFactory.cs │ │ ├── IParameterInfoParameterDescriptor.cs │ │ ├── IPropertyInfoParameterDescriptor.cs │ │ ├── IStatusCodeActionResult.cs │ │ ├── ITypeActivatorCache.cs │ │ ├── LocalRedirectResultExecutor.cs │ │ ├── MemoryPoolHttpRequestStreamReaderFactory.cs │ │ ├── MemoryPoolHttpResponseStreamWriterFactory.cs │ │ ├── ModelStateInvalidFilter.cs │ │ ├── ModelStateInvalidFilterFactory.cs │ │ ├── MvcCompatibilityOptions.cs │ │ ├── MvcCoreMvcOptionsSetup.cs │ │ ├── MvcOptionsConfigureCompatibilityOptions.cs │ │ ├── NonDisposableStream.cs │ │ ├── NullableCompatibilitySwitch.cs │ │ ├── ObjectResultExecutor.cs │ │ ├── OutputFormatterSelector.cs │ │ ├── ParameterDefaultValues.cs │ │ ├── PhysicalFileResultExecutor.cs │ │ ├── ProblemDetailsClientErrorFactory.cs │ │ ├── RedirectResultExecutor.cs │ │ ├── RedirectToActionResultExecutor.cs │ │ ├── RedirectToPageResultExecutor.cs │ │ ├── RedirectToRouteResultExecutor.cs │ │ ├── ResourceInvoker.cs │ │ ├── TypeActivatorCache.cs │ │ └── VirtualFileResultExecutor.cs │ ├── LocalRedirectResult.cs │ ├── Microsoft.AspNetCore.Mvc.Core.csproj │ ├── ModelBinderAttribute.cs │ ├── ModelBinding │ │ ├── BindNeverAttribute.cs │ │ ├── BindRequiredAttribute.cs │ │ ├── Binders │ │ │ ├── ArrayModelBinder.cs │ │ │ ├── ArrayModelBinderProvider.cs │ │ │ ├── BinderTypeModelBinder.cs │ │ │ ├── BinderTypeModelBinderProvider.cs │ │ │ ├── BodyModelBinder.cs │ │ │ ├── BodyModelBinderProvider.cs │ │ │ ├── ByteArrayModelBinder.cs │ │ │ ├── ByteArrayModelBinderProvider.cs │ │ │ ├── CancellationTokenModelBinder.cs │ │ │ ├── CancellationTokenModelBinderProvider.cs │ │ │ ├── CollectionModelBinder.cs │ │ │ ├── CollectionModelBinderProvider.cs │ │ │ ├── ComplexTypeModelBinder.cs │ │ │ ├── ComplexTypeModelBinderProvider.cs │ │ │ ├── DecimalModelBinder.cs │ │ │ ├── DictionaryModelBinder.cs │ │ │ ├── DictionaryModelBinderProvider.cs │ │ │ ├── DoubleModelBinder.cs │ │ │ ├── EnumTypeModelBinder.cs │ │ │ ├── EnumTypeModelBinderProvider.cs │ │ │ ├── FloatModelBinder.cs │ │ │ ├── FloatingPointTypeModelBinderProvider.cs │ │ │ ├── FormCollectionModelBinder.cs │ │ │ ├── FormCollectionModelBinderProvider.cs │ │ │ ├── FormFileModelBinder.cs │ │ │ ├── FormFileModelBinderProvider.cs │ │ │ ├── HeaderModelBinder.cs │ │ │ ├── HeaderModelBinderProvider.cs │ │ │ ├── KeyValuePairModelBinder.cs │ │ │ ├── KeyValuePairModelBinderProvider.cs │ │ │ ├── ServicesModelBinder.cs │ │ │ ├── ServicesModelBinderProvider.cs │ │ │ ├── SimpleTypeModelBinder.cs │ │ │ └── SimpleTypeModelBinderProvider.cs │ │ ├── BindingBehavior.cs │ │ ├── BindingBehaviorAttribute.cs │ │ ├── BindingSourceValueProvider.cs │ │ ├── CompositeValueProvider.cs │ │ ├── DefaultModelBindingContext.cs │ │ ├── DefaultPropertyFilterProvider.cs │ │ ├── ElementalValueProvider.cs │ │ ├── EmptyModelMetadataProvider.cs │ │ ├── FormValueProvider.cs │ │ ├── FormValueProviderFactory.cs │ │ ├── IBindingSourceValueProvider.cs │ │ ├── ICollectionModelBinder.cs │ │ ├── IEnumerableValueProvider.cs │ │ ├── IKeyRewriterValueProvider.cs │ │ ├── IModelBinderFactory.cs │ │ ├── JQueryFormValueProvider.cs │ │ ├── JQueryFormValueProviderFactory.cs │ │ ├── JQueryKeyValuePairNormalizer.cs │ │ ├── JQueryQueryStringValueProvider.cs │ │ ├── JQueryQueryStringValueProviderFactory.cs │ │ ├── JQueryValueProvider.cs │ │ ├── Metadata │ │ │ ├── BindingMetadata.cs │ │ │ ├── BindingMetadataProviderContext.cs │ │ │ ├── BindingSourceMetadataProvider.cs │ │ │ ├── DefaultBindingMetadataProvider.cs │ │ │ ├── DefaultCompositeMetadataDetailsProvider.cs │ │ │ ├── DefaultMetadataDetails.cs │ │ │ ├── DefaultModelBindingMessageProvider.cs │ │ │ ├── DefaultModelMetadata.cs │ │ │ ├── DefaultModelMetadataProvider.cs │ │ │ ├── DefaultValidationMetadataProvider.cs │ │ │ ├── DisplayMetadata.cs │ │ │ ├── DisplayMetadataProviderContext.cs │ │ │ ├── ExcludeBindingMetadataProvider.cs │ │ │ ├── HasValidatorsValidationMetadataProvider.cs │ │ │ ├── IBindingMetadataProvider.cs │ │ │ ├── ICompositeMetadataDetailsProvider.cs │ │ │ ├── IDisplayMetadataProvider.cs │ │ │ ├── IMetadataDetailsProvider.cs │ │ │ ├── IValidationMetadataProvider.cs │ │ │ ├── MetadataDetailsProviderExtensions.cs │ │ │ ├── ModelAttributes.cs │ │ │ ├── ValidationMetadata.cs │ │ │ └── ValidationMetadataProviderContext.cs │ │ ├── ModelBinderFactory.cs │ │ ├── ModelBinderFactoryContext.cs │ │ ├── ModelBinderProviderExtensions.cs │ │ ├── ModelBindingHelper.cs │ │ ├── ModelMetadataProviderExtensions.cs │ │ ├── ModelNames.cs │ │ ├── NoOpBinder.cs │ │ ├── ObjectModelValidator.cs │ │ ├── ParameterBinder.cs │ │ ├── PlaceholderBinder.cs │ │ ├── PrefixContainer.cs │ │ ├── PropertyValueSetter.cs │ │ ├── QueryStringValueProvider.cs │ │ ├── QueryStringValueProviderFactory.cs │ │ ├── ReferenceEqualityComparer.cs │ │ ├── RouteValueProvider.cs │ │ ├── RouteValueProviderFactory.cs │ │ ├── SuppressChildValidationMetadataProvider.cs │ │ ├── UnsupportedContentTypeException.cs │ │ ├── UnsupportedContentTypeFilter.cs │ │ ├── Validation │ │ │ ├── ClientValidatorCache.cs │ │ │ ├── CompositeClientModelValidatorProvider.cs │ │ │ ├── CompositeModelValidatorProvider.cs │ │ │ ├── DefaultCollectionValidationStrategy.cs │ │ │ ├── DefaultComplexObjectValidationStrategy.cs │ │ │ ├── DefaultModelValidatorProvider.cs │ │ │ ├── DefaultObjectValidator.cs │ │ │ ├── ExplicitIndexCollectionValidationStrategy.cs │ │ │ ├── IMetadataBasedModelValidatorProvider.cs │ │ │ ├── IObjectModelValidator.cs │ │ │ ├── ModelValidatorProviderExtensions.cs │ │ │ ├── ShortFormDictionaryValidationStrategy.cs │ │ │ ├── ValidateNeverAttribute.cs │ │ │ ├── ValidationStack.cs │ │ │ ├── ValidationVisitor.cs │ │ │ └── ValidatorCache.cs │ │ └── ValueProviderFactoryExtensions.cs │ ├── ModelMetadataTypeAttribute.cs │ ├── MvcCoreDiagnosticSourceExtensions.cs │ ├── MvcCoreLoggerExtensions.cs │ ├── MvcOptions.cs │ ├── NoContentResult.cs │ ├── NonActionAttribute.cs │ ├── NonControllerAttribute.cs │ ├── NonViewComponentAttribute.cs │ ├── NotFoundObjectResult.cs │ ├── NotFoundResult.cs │ ├── ObjectResult.cs │ ├── OkObjectResult.cs │ ├── OkResult.cs │ ├── PhysicalFileResult.cs │ ├── ProblemDetails.cs │ ├── ProducesAttribute.cs │ ├── ProducesDefaultResponseTypeAttribute.cs │ ├── ProducesErrorResponseTypeAttribute.cs │ ├── ProducesResponseTypeAttribute.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Resources.Designer.cs │ ├── RedirectResult.cs │ ├── RedirectToActionResult.cs │ ├── RedirectToPageResult.cs │ ├── RedirectToRouteResult.cs │ ├── RequestFormLimitsAttribute.cs │ ├── RequestSizeLimitAttribute.cs │ ├── RequireHttpsAttribute.cs │ ├── Resources.resx │ ├── ResponseCacheAttribute.cs │ ├── ResponseCacheLocation.cs │ ├── RouteAttribute.cs │ ├── Routing │ │ ├── ActionConstraintMatcherPolicy.cs │ │ ├── AttributeRoute.cs │ │ ├── AttributeRouting.cs │ │ ├── ConsumesMatcherPolicy.cs │ │ ├── ConsumesMetadata.cs │ │ ├── ControllerLinkGeneratorExtensions.cs │ │ ├── EndpointRoutingUrlHelper.cs │ │ ├── HttpMethodAttribute.cs │ │ ├── IActionHttpMethodProvider.cs │ │ ├── IConsumesMetadata.cs │ │ ├── IRouteTemplateProvider.cs │ │ ├── IRouteValueProvider.cs │ │ ├── IUrlHelperFactory.cs │ │ ├── KnownRouteValueConstraint.cs │ │ ├── MvcAttributeRouteHandler.cs │ │ ├── MvcEndpointDataSource.cs │ │ ├── MvcEndpointInvokerFactory.cs │ │ ├── MvcRouteHandler.cs │ │ ├── NormalizedRouteValue.cs │ │ ├── NullRouter.cs │ │ ├── PageLinkGeneratorExtensions.cs │ │ ├── RoutePatternWriter.cs │ │ ├── RouteValueAttribute.cs │ │ ├── UrlHelper.cs │ │ ├── UrlHelperBase.cs │ │ ├── UrlHelperFactory.cs │ │ └── ViewEnginePath.cs │ ├── SerializableError.cs │ ├── ServiceFilterAttribute.cs │ ├── SignInResult.cs │ ├── SignOutResult.cs │ ├── StatusCodeResult.cs │ ├── TypeFilterAttribute.cs │ ├── UnauthorizedObjectResult.cs │ ├── UnauthorizedResult.cs │ ├── UnprocessableEntityObjectResult.cs │ ├── UnprocessableEntityResult.cs │ ├── UnsupportedMediaTypeResult.cs │ ├── UrlHelperExtensions.cs │ ├── ValidationProblemDetails.cs │ ├── ViewFeatures │ │ └── IKeepTempDataResult.cs │ ├── VirtualFileResult.cs │ ├── baseline.netcore.json │ └── breakingchanges.netcore.json ├── Microsoft.AspNetCore.Mvc.Cors │ ├── CorsApplicationModelProvider.cs │ ├── CorsAuthorizationFilter.cs │ ├── CorsAuthorizationFilterFactory.cs │ ├── CorsHttpMethodActionConstraint.cs │ ├── CorsLoggerExtensions.cs │ ├── DependencyInjection │ │ └── MvcCorsMvcCoreBuilderExtensions.cs │ ├── DisableCorsAuthorizationFilter.cs │ ├── ICorsAuthorizationFilter.cs │ ├── Microsoft.AspNetCore.Mvc.Cors.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Resources.Designer.cs │ ├── Resources.resx │ ├── baseline.netcore.json │ └── breakingchanges.netcore.json ├── Microsoft.AspNetCore.Mvc.DataAnnotations │ ├── AttributeAdapterBase.cs │ ├── CompareAttributeAdapter.cs │ ├── DataAnnotationsClientModelValidatorProvider.cs │ ├── DataAnnotationsLocalizationServices.cs │ ├── DataAnnotationsMetadataProvider.cs │ ├── DataAnnotationsModelValidator.cs │ ├── DataAnnotationsModelValidatorProvider.cs │ ├── DataTypeAttributeAdapter.cs │ ├── DefaultClientModelValidatorProvider.cs │ ├── DependencyInjection │ │ ├── MvcDataAnnotationsLocalizationConfigureCompatibilityOptions.cs │ │ ├── MvcDataAnnotationsLocalizationOptionsSetup.cs │ │ ├── MvcDataAnnotationsMvcBuilderExtensions.cs │ │ ├── MvcDataAnnotationsMvcCoreBuilderExtensions.cs │ │ └── MvcDataAnnotationsMvcOptionsSetup.cs │ ├── FileExtensionsAttributeAdapter.cs │ ├── HiddenInputAttribute.cs │ ├── IAttributeAdapter.cs │ ├── IValidationAttributeAdapterProvider.cs │ ├── MaxLengthAttributeAdapter.cs │ ├── Microsoft.AspNetCore.Mvc.DataAnnotations.csproj │ ├── MinLengthAttributeAdapter.cs │ ├── MvcDataAnnotationsLocalizationOptions.cs │ ├── NumericClientModelValidator.cs │ ├── NumericClientModelValidatorProvider.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Resources.Designer.cs │ ├── RangeAttributeAdapter.cs │ ├── RegularExpressionAttributeAdapter.cs │ ├── RequiredAttributeAdapter.cs │ ├── Resources.resx │ ├── StringLengthAttributeAdapter.cs │ ├── ValidatableObjectAdapter.cs │ ├── ValidationAttributeAdapterOfTAttribute.cs │ ├── ValidationAttributeAdapterProvider.cs │ ├── ValidationProviderAttribute.cs │ └── baseline.netcore.json ├── Microsoft.AspNetCore.Mvc.Formatters.Json │ ├── DependencyInjection │ │ ├── MvcJsonMvcBuilderExtensions.cs │ │ ├── MvcJsonMvcCoreBuilderExtensions.cs │ │ ├── MvcJsonMvcOptionsSetup.cs │ │ ├── MvcJsonOptionsConfigureCompatibilityOptions.cs │ │ └── MvcJsonOptionsExtensions.cs │ ├── JsonArrayPool.cs │ ├── JsonInputFormatter.cs │ ├── JsonOutputFormatter.cs │ ├── JsonPatchExtensions.cs │ ├── JsonPatchInputFormatter.cs │ ├── JsonPatchOperationsArrayProvider.cs │ ├── JsonResult.cs │ ├── JsonResultExecutor.cs │ ├── JsonSerializerObjectPolicy.cs │ ├── JsonSerializerSettingsProvider.cs │ ├── MediaTypeHeaderValues.cs │ ├── Microsoft.AspNetCore.Mvc.Formatters.Json.csproj │ ├── MvcJsonLoggerExtensions.cs │ ├── MvcJsonOptions.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Resources.Designer.cs │ ├── Resources.resx │ └── baseline.netcore.json ├── Microsoft.AspNetCore.Mvc.Formatters.Xml │ ├── DelegatingEnumerable.cs │ ├── DelegatingEnumerator.cs │ ├── DependencyInjection │ │ ├── MvcXmlMvcBuilderExtensions.cs │ │ ├── MvcXmlMvcCoreBuilderExtensions.cs │ │ ├── MvcXmlOptionsConfigureCompatibilityOptions.cs │ │ ├── XmlDataContractSerializerMvcOptionsSetup.cs │ │ └── XmlSerializerMvcOptionsSetup.cs │ ├── EnumerableWrapperProvider.cs │ ├── EnumerableWrapperProviderFactory.cs │ ├── FormattingUtilities.cs │ ├── IUnwrappable.cs │ ├── IWrapperProvider.cs │ ├── IWrapperProviderFactory.cs │ ├── LoggerExtensions.cs │ ├── MediaTypeHeaderValues.cs │ ├── Microsoft.AspNetCore.Mvc.Formatters.Xml.csproj │ ├── ModelBinding │ │ └── DataMemberRequiredBindingMetadataProvider.cs │ ├── MvcXmlOptions.cs │ ├── ProblemDetails21Wrapper.cs │ ├── ProblemDetailsWrapper.cs │ ├── ProblemDetailsWrapperProviderFactory.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Resources.Designer.cs │ ├── Resources.resx │ ├── SerializableErrorWrapper.cs │ ├── SerializableErrorWrapperProvider.cs │ ├── SerializableErrorWrapperProviderFactory.cs │ ├── ValidationProblemDetails21Wrapper.cs │ ├── ValidationProblemDetailsWrapper.cs │ ├── WrapperProviderContext.cs │ ├── WrapperProviderFactoriesExtensions.cs │ ├── XmlDataContractSerializerInputFormatter.cs │ ├── XmlDataContractSerializerOutputFormatter.cs │ ├── XmlSerializerInputFormatter.cs │ ├── XmlSerializerOutputFormatter.cs │ └── baseline.netcore.json ├── Microsoft.AspNetCore.Mvc.Localization │ ├── DependencyInjection │ │ ├── MvcLocalizationMvcBuilderExtensions.cs │ │ └── MvcLocalizationMvcCoreBuilderExtensions.cs │ ├── HtmlLocalizer.cs │ ├── HtmlLocalizerExtensions.cs │ ├── HtmlLocalizerFactory.cs │ ├── HtmlLocalizerOfT.cs │ ├── IHtmlLocalizer.cs │ ├── IHtmlLocalizerFactory.cs │ ├── IHtmlLocalizerOfT.cs │ ├── IViewLocalizer.cs │ ├── LocalizedHtmlString.cs │ ├── Microsoft.AspNetCore.Mvc.Localization.csproj │ ├── MvcLocalizationServices.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Resources.Designer.cs │ ├── ViewLocalizer.cs │ └── baseline.netcore.json ├── Microsoft.AspNetCore.Mvc.Razor │ ├── ApplicationParts │ │ ├── CompiledRazorAssemblyApplicationPartFactory.cs │ │ ├── CompiledRazorAssemblyPart.cs │ │ ├── IRazorCompiledItemProvider.cs │ │ └── RazorCompiledItemFeatureProvider.cs │ ├── Compilation │ │ ├── CompiledViewDescriptor.cs │ │ ├── DefaultRazorPageFactoryProvider.cs │ │ ├── IViewCompiler.cs │ │ ├── IViewCompilerProvider.cs │ │ ├── RazorViewAttribute.cs │ │ ├── RazorViewCompiler.cs │ │ ├── RazorViewCompilerProvider.cs │ │ ├── ViewsFeature.cs │ │ └── ViewsFeatureProvider.cs │ ├── DefaultTagHelperFactory.cs │ ├── DependencyInjection │ │ ├── MvcRazorMvcBuilderExtensions.cs │ │ ├── MvcRazorMvcCoreBuilderExtensions.cs │ │ ├── MvcRazorMvcViewOptionsSetup.cs │ │ └── TagHelpersAsServices.cs │ ├── HelperResult.cs │ ├── IModelTypeProvider.cs │ ├── IRazorPage.cs │ ├── IRazorPageActivator.cs │ ├── IRazorPageFactoryProvider.cs │ ├── IRazorViewEngine.cs │ ├── ITagHelperActivator.cs │ ├── ITagHelperFactory.cs │ ├── ITagHelperInitializerOfT.cs │ ├── IViewLocationExpander.cs │ ├── Infrastructure │ │ ├── CryptographyAlgorithms.cs │ │ ├── DefaultFileVersionProvider.cs │ │ ├── DefaultTagHelperActivator.cs │ │ └── TagHelperMemoryCacheProvider.cs │ ├── Internal │ │ └── RazorInjectAttribute.cs │ ├── LanguageViewLocationExpander.cs │ ├── LanguageViewLocationExpanderFormat.cs │ ├── Microsoft.AspNetCore.Mvc.Razor.csproj │ ├── MvcRazorDiagnosticSourceExtensions.cs │ ├── MvcRazorLoggerExtensions.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Resources.Designer.cs │ ├── RazorFileHierarchy.cs │ ├── RazorPage.cs │ ├── RazorPageActivator.cs │ ├── RazorPageBase.cs │ ├── RazorPageFactoryResult.cs │ ├── RazorPageOfT.cs │ ├── RazorPagePropertyActivator.cs │ ├── RazorPageResult.cs │ ├── RazorView.cs │ ├── RazorViewEngine.cs │ ├── RazorViewEngineOptions.cs │ ├── RazorViewEngineOptionsSetup.cs │ ├── RenderAsyncDelegate.cs │ ├── Resources.resx │ ├── ServiceBasedTagHelperActivator.cs │ ├── TagHelperComponentManager.cs │ ├── TagHelperInitializerOfT.cs │ ├── TagHelpers │ │ ├── BodyTagHelper.cs │ │ ├── HeadTagHelper.cs │ │ ├── ITagHelperComponentManager.cs │ │ ├── ITagHelperComponentPropertyActivator.cs │ │ ├── TagHelperComponentPropertyActivator.cs │ │ ├── TagHelperComponentTagHelper.cs │ │ ├── TagHelperFeature.cs │ │ ├── TagHelperFeatureProvider.cs │ │ └── UrlResolutionTagHelper.cs │ ├── ViewLocationCacheItem.cs │ ├── ViewLocationCacheKey.cs │ ├── ViewLocationCacheResult.cs │ ├── ViewLocationExpanderContext.cs │ ├── ViewPath.cs │ ├── baseline.netcore.json │ └── breakingchanges.netcore.json ├── Microsoft.AspNetCore.Mvc.RazorPages │ ├── ApplicationModels │ │ ├── AuthorizationPageApplicationModelProvider.cs │ │ ├── AutoValidateAntiforgeryPageApplicationModelProvider.cs │ │ ├── CompiledPageActionDescriptorBuilder.cs │ │ ├── CompiledPageRouteModelProvider.cs │ │ ├── DefaultPageApplicationModelProvider.cs │ │ ├── IPageApplicationModelConvention.cs │ │ ├── IPageApplicationModelProvider.cs │ │ ├── IPageConvention.cs │ │ ├── IPageHandlerModelConvention.cs │ │ ├── IPageRouteModelConvention.cs │ │ ├── IPageRouteModelProvider.cs │ │ ├── PageApplicationModel.cs │ │ ├── PageApplicationModelProviderContext.cs │ │ ├── PageConventionCollection.cs │ │ ├── PageHandlerModel.cs │ │ ├── PageParameterModel.cs │ │ ├── PagePropertyModel.cs │ │ ├── PageRouteMetadata.cs │ │ ├── PageRouteModel.cs │ │ ├── PageRouteModelFactory.cs │ │ ├── PageRouteModelProviderContext.cs │ │ ├── PageRouteTransformerConvention.cs │ │ ├── ResponseCacheFilterApplicationModelProvider.cs │ │ ├── TempDataFilterPageApplicationModelProvider.cs │ │ └── ViewDataAttributePageApplicationModelProvider.cs │ ├── Builder │ │ └── RazorPagesEndpointRouteBuilderExtensions.cs │ ├── CompiledPageActionDescriptor.cs │ ├── DependencyInjection │ │ ├── MvcRazorPagesMvcBuilderExtensions.cs │ │ ├── MvcRazorPagesMvcCoreBuilderExtensions.cs │ │ ├── PageConventionCollectionExtensions.cs │ │ └── RazorPagesRazorViewEngineOptionsSetup.cs │ ├── Filters │ │ ├── IAsyncPageFilter.cs │ │ ├── IPageFilter.cs │ │ ├── PageHandlerExecutedContext.cs │ │ ├── PageHandlerExecutingContext.cs │ │ ├── PageHandlerExecutionDelegate.cs │ │ ├── PageHandlerPageFilter.cs │ │ ├── PageHandlerResultFIlter.cs │ │ ├── PageHandlerSelectedContext.cs │ │ ├── PageResponseCacheFilter.cs │ │ ├── PageSaveTempDataPropertyFilter.cs │ │ ├── PageSaveTempDataPropertyFilterFactory.cs │ │ ├── PageViewDataAttributeFilter.cs │ │ └── PageViewDataAttributeFilterFactory.cs │ ├── IPageActivatorProvider.cs │ ├── IPageFactoryProvider.cs │ ├── IPageModelActivatorProvider.cs │ ├── IPageModelFactoryProvider.cs │ ├── Infrastructure │ │ ├── DefaultPageActivatorProvider.cs │ │ ├── DefaultPageArgumentBinder.cs │ │ ├── DefaultPageFactoryProvider.cs │ │ ├── DefaultPageHandlerMethodSelector.cs │ │ ├── DefaultPageLoader.cs │ │ ├── DefaultPageModelActivatorProvider.cs │ │ ├── DefaultPageModelFactoryProvider.cs │ │ ├── ExecutorFactory.cs │ │ ├── HandleOptionsRequestsPageFilter.cs │ │ ├── HandlerMethodDescriptor.cs │ │ ├── HandlerParameterDescriptor.cs │ │ ├── IPageHandlerMethodSelector.cs │ │ ├── IPageLoader.cs │ │ ├── PageActionDescriptorProvider.cs │ │ ├── PageActionInvoker.cs │ │ ├── PageActionInvokerCacheEntry.cs │ │ ├── PageActionInvokerProvider.cs │ │ ├── PageArgumentBinder.cs │ │ ├── PageBinderFactory.cs │ │ ├── PageBoundPropertyDescriptor.cs │ │ ├── PageHandlerBinderDelegate.cs │ │ ├── PageHandlerExecutorDelegate.cs │ │ ├── PageModelAttribute.cs │ │ ├── PageResultExecutor.cs │ │ ├── PageViewLocationExpander.cs │ │ ├── RazorPageAdapter.cs │ │ ├── RazorPageAttribute.cs │ │ └── ServiceBasedPageModelActivatorProvider.cs │ ├── Microsoft.AspNetCore.Mvc.RazorPages.csproj │ ├── MvcRazorPagesDiagnosticSourceExtensions.cs │ ├── NonHandlerAttribute.cs │ ├── Page.cs │ ├── PageActionDescriptor.cs │ ├── PageBase.cs │ ├── PageContext.cs │ ├── PageContextAttribute.cs │ ├── PageLoggerExtensions.cs │ ├── PageModel.cs │ ├── PageResult.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Resources.Designer.cs │ ├── RazorPagesOptions.cs │ ├── RazorPagesOptionsConfigureCompatibilityOptions.cs │ ├── Resources.resx │ ├── baseline.netcore.json │ └── breakingchanges.netcore.json ├── Microsoft.AspNetCore.Mvc.TagHelpers │ ├── AnchorTagHelper.cs │ ├── AttributeMatcher.cs │ ├── Cache │ │ ├── CacheTagKey.cs │ │ ├── DistributedCacheTagHelperFormatter.cs │ │ ├── DistributedCacheTagHelperFormattingContext.cs │ │ ├── DistributedCacheTagHelperService.cs │ │ ├── DistributedCacheTagHelperStorage.cs │ │ ├── IDistributedCacheTagHelperFormatter.cs │ │ ├── IDistributedCacheTagHelperService.cs │ │ └── IDistributedCacheTagHelperStorage.cs │ ├── CacheTagHelper.cs │ ├── CacheTagHelperBase.cs │ ├── CacheTagHelperMemoryCacheFactory.cs │ ├── CacheTagHelperOptions.cs │ ├── CurrentValues.cs │ ├── DependencyInjection │ │ └── TagHelperExtensions.cs │ ├── DistributedCacheTagHelper.cs │ ├── EnvironmentTagHelper.cs │ ├── FileProviderGlobbingDirectory.cs │ ├── FileProviderGlobbingFile.cs │ ├── FormActionTagHelper.cs │ ├── FormTagHelper.cs │ ├── GlobbingUrlBuilder.cs │ ├── ImageTagHelper.cs │ ├── InputTagHelper.cs │ ├── JavaScriptResources.cs │ ├── LabelTagHelper.cs │ ├── LinkTagHelper.cs │ ├── Microsoft.AspNetCore.Mvc.TagHelpers.csproj │ ├── ModeAttributesOfT.cs │ ├── MvcTagHelpersLoggerExtensions.cs │ ├── OptionTagHelper.cs │ ├── PartialTagHelper.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Resources.Designer.cs │ ├── RenderAtEndOfFormTagHelper.cs │ ├── Rendering │ │ └── ValidationSummary.cs │ ├── Resources.resx │ ├── ScriptTagHelper.cs │ ├── SelectTagHelper.cs │ ├── TagHelperOutputExtensions.cs │ ├── TextAreaTagHelper.cs │ ├── ValidationMessageTagHelper.cs │ ├── ValidationSummaryTagHelper.cs │ ├── _grunt.readme │ ├── _gruntfile.js │ ├── _package.json │ ├── baseline.netcore.json │ ├── breakingchanges.netcore.json │ ├── compiler │ │ └── resources │ │ │ └── LinkTagHelper_FallbackJavaScript.js │ └── js │ │ └── LinkTagHelper_FallbackJavaScript.js ├── Microsoft.AspNetCore.Mvc.Testing │ ├── Handlers │ │ ├── CookieContainerHandler.cs │ │ └── RedirectHandler.cs │ ├── Microsoft.AspNetCore.Mvc.Testing.csproj │ ├── Microsoft.AspNetCore.Mvc.Testing.targets │ ├── Properties │ │ └── Resources.Designer.cs │ ├── Resources.resx │ ├── WebApplicationFactory.cs │ ├── WebApplicationFactoryClientOptions.cs │ ├── WebApplicationFactoryContentRootAttribute.cs │ └── baseline.netcore.json ├── Microsoft.AspNetCore.Mvc.ViewFeatures │ ├── AntiforgeryExtensions.cs │ ├── AttributeDictionary.cs │ ├── AutoValidateAntiforgeryTokenAttribute.cs │ ├── Buffers │ │ ├── ArrayPoolBufferSource.cs │ │ ├── CharArrayBufferSource.cs │ │ ├── ICharBufferSource.cs │ │ ├── IViewBufferScope.cs │ │ ├── MemoryPoolViewBufferScope.cs │ │ ├── PagedBufferedTextWriter.cs │ │ ├── PagedCharBuffer.cs │ │ ├── ViewBuffer.cs │ │ ├── ViewBufferPage.cs │ │ ├── ViewBufferTextWriter.cs │ │ └── ViewBufferValue.cs │ ├── CachedExpressionCompiler.cs │ ├── Controller.cs │ ├── CookieTempDataProvider.cs │ ├── CookieTempDataProviderOptions.cs │ ├── DefaultDisplayTemplates.cs │ ├── DefaultEditorTemplates.cs │ ├── DefaultHtmlGenerator.cs │ ├── DefaultHtmlGeneratorExtensions.cs │ ├── DefaultValidationHtmlAttributeProvider.cs │ ├── DependencyInjection │ │ ├── MvcViewFeaturesMvcBuilderExtensions.cs │ │ ├── MvcViewFeaturesMvcCoreBuilderExtensions.cs │ │ ├── MvcViewOptionsSetup.cs │ │ └── TempDataMvcOptionsSetup.cs │ ├── DynamicViewData.cs │ ├── ExpressionHelper.cs │ ├── ExpressionMetadataProvider.cs │ ├── ExpressionTextCache.cs │ ├── Filters │ │ ├── AutoValidateAntiforgeryTokenAuthorizationFilter.cs │ │ ├── ControllerSaveTempDataPropertyFilter.cs │ │ ├── ControllerSaveTempDataPropertyFilterFactory.cs │ │ ├── ControllerViewDataAttributeFilter.cs │ │ ├── ControllerViewDataAttributeFilterFactory.cs │ │ ├── ISaveTempDataCallback.cs │ │ ├── IViewDataValuesProviderFeature.cs │ │ ├── LifecycleProperty.cs │ │ ├── SaveTempDataFilter.cs │ │ ├── SaveTempDataPropertyFilterBase.cs │ │ ├── TempDataApplicationModelProvider.cs │ │ ├── TempDataSerializer.cs │ │ ├── ValidateAntiforgeryTokenAuthorizationFilter.cs │ │ ├── ViewDataAttributeApplicationModelProvider.cs │ │ └── ViewDataAttributePropertyProvider.cs │ ├── FormContext.cs │ ├── FormatWeekHelper.cs │ ├── HtmlAttributePropertyHelper.cs │ ├── HtmlHelper.cs │ ├── HtmlHelperOfT.cs │ ├── HtmlHelperOptions.cs │ ├── IAntiforgeryPolicy.cs │ ├── IFileVersionProvider.cs │ ├── IHtmlGenerator.cs │ ├── IModelExpressionProvider.cs │ ├── ITempDataDictionary.cs │ ├── ITempDataDictionaryFactory.cs │ ├── ITempDataProvider.cs │ ├── IViewComponentHelper.cs │ ├── IViewComponentResult.cs │ ├── IViewContextAware.cs │ ├── IgnoreAntiforgeryTokenAttribute.cs │ ├── InputType.cs │ ├── JsonHelper.cs │ ├── MemberExpressionCacheKey.cs │ ├── MemberExpressionCacheKeyComparer.cs │ ├── Microsoft.AspNetCore.Mvc.ViewFeatures.csproj │ ├── ModelExplorer.cs │ ├── ModelExplorerExtensions.cs │ ├── ModelExpression.cs │ ├── ModelExpressionProvider.cs │ ├── ModelMetadataProviderExtensions.cs │ ├── ModelStateDictionaryExtensions.cs │ ├── MvcViewFeaturesDiagnosticSourceExtensions.cs │ ├── MvcViewFeaturesLoggerExtensions.cs │ ├── MvcViewOptions.cs │ ├── MvcViewOptionsConfigureCompatibilityOptions.cs │ ├── NameAndIdProvider.cs │ ├── NullView.cs │ ├── PageRemoteAttribute.cs │ ├── PartialViewResult.cs │ ├── PartialViewResultExecutor.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Resources.Designer.cs │ ├── RemoteAttribute.cs │ ├── RemoteAttributeBase.cs │ ├── Rendering │ │ ├── FormMethod.cs │ │ ├── Html5DateRenderingMode.cs │ │ ├── HtmlHelperDisplayExtensions.cs │ │ ├── HtmlHelperDisplayNameExtensions.cs │ │ ├── HtmlHelperEditorExtensions.cs │ │ ├── HtmlHelperFormExtensions.cs │ │ ├── HtmlHelperInputExtensions.cs │ │ ├── HtmlHelperLabelExtensions.cs │ │ ├── HtmlHelperLinkExtensions.cs │ │ ├── HtmlHelperNameExtensions.cs │ │ ├── HtmlHelperPartialExtensions.cs │ │ ├── HtmlHelperSelectExtensions.cs │ │ ├── HtmlHelperValidationExtensions.cs │ │ ├── HtmlHelperValueExtensions.cs │ │ ├── IHtmlHelper.cs │ │ ├── IHtmlHelperOfT.cs │ │ ├── IJsonHelper.cs │ │ ├── MultiSelectList.cs │ │ ├── MvcForm.cs │ │ ├── SelectList.cs │ │ ├── SelectListGroup.cs │ │ ├── SelectListItem.cs │ │ ├── TagBuilder.cs │ │ ├── TagRenderMode.cs │ │ ├── ViewComponentHelperExtensions.cs │ │ └── ViewContext.cs │ ├── Resources.resx │ ├── SaveTempDataAttribute.cs │ ├── SessionStateTempDataProvider.cs │ ├── SkipStatusCodePagesAttribute.cs │ ├── StringHtmlContent.cs │ ├── TempDataAttribute.cs │ ├── TempDataDictionary.cs │ ├── TempDataDictionaryFactory.cs │ ├── TemplateBuilder.cs │ ├── TemplateInfo.cs │ ├── TemplateRenderer.cs │ ├── TryGetValueDelegate.cs │ ├── TryGetValueProvider.cs │ ├── ValidateAntiForgeryTokenAttribute.cs │ ├── ValidationHelpers.cs │ ├── ValidationHtmlAttributeProvider.cs │ ├── ViewComponent.cs │ ├── ViewComponentAttribute.cs │ ├── ViewComponentResult.cs │ ├── ViewComponentResultExecutor.cs │ ├── ViewComponents │ │ ├── ContentViewComponentResult.cs │ │ ├── DefaultViewComponentActivator.cs │ │ ├── DefaultViewComponentDescriptorCollectionProvider.cs │ │ ├── DefaultViewComponentDescriptorProvider.cs │ │ ├── DefaultViewComponentFactory.cs │ │ ├── DefaultViewComponentHelper.cs │ │ ├── DefaultViewComponentInvoker.cs │ │ ├── DefaultViewComponentInvokerFactory.cs │ │ ├── DefaultViewComponentSelector.cs │ │ ├── HtmlContentViewComponentResult.cs │ │ ├── IViewComponentActivator.cs │ │ ├── IViewComponentDescriptorCollectionProvider.cs │ │ ├── IViewComponentDescriptorProvider.cs │ │ ├── IViewComponentFactory.cs │ │ ├── IViewComponentInvoker.cs │ │ ├── IViewComponentInvokerFactory.cs │ │ ├── IViewComponentSelector.cs │ │ ├── ServiceBasedViewComponentActivator.cs │ │ ├── ViewComponentContext.cs │ │ ├── ViewComponentContextAttribute.cs │ │ ├── ViewComponentConventions.cs │ │ ├── ViewComponentDescriptor.cs │ │ ├── ViewComponentDescriptorCollection.cs │ │ ├── ViewComponentFeature.cs │ │ ├── ViewComponentFeatureProvider.cs │ │ ├── ViewComponentInvokerCache.cs │ │ └── ViewViewComponentResult.cs │ ├── ViewContextAttribute.cs │ ├── ViewDataAttribute.cs │ ├── ViewDataDictionary.cs │ ├── ViewDataDictionaryAttribute.cs │ ├── ViewDataDictionaryControllerPropertyActivator.cs │ ├── ViewDataDictionaryFactory.cs │ ├── ViewDataDictionaryOfT.cs │ ├── ViewDataEvaluator.cs │ ├── ViewDataInfo.cs │ ├── ViewEngines │ │ ├── CompositeViewEngine.cs │ │ ├── ICompositeViewEngine.cs │ │ ├── IView.cs │ │ ├── IViewEngine.cs │ │ └── ViewEngineResult.cs │ ├── ViewExecutor.cs │ ├── ViewResult.cs │ ├── ViewResultExecutor.cs │ ├── baseline.netcore.json │ └── breakingchanges.netcore.json ├── Microsoft.AspNetCore.Mvc │ ├── DesignTimeMvcServiceCollectionProvider.cs │ ├── Microsoft.AspNetCore.Mvc.csproj │ ├── MvcServiceCollectionExtensions.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── baseline.netcore.json ├── Microsoft.Extensions.ApiDescription.Design │ ├── DownloadFile.cs │ ├── GetCurrentItems.cs │ ├── GetFileReferenceMetadata.cs │ ├── GetProjectReferenceMetadata.cs │ ├── GetUriReferenceMetadata.cs │ ├── MetadataSerializer.cs │ ├── Microsoft.Extensions.ApiDescription.Design.csproj │ ├── Microsoft.Extensions.ApiDescription.Design.nuspec │ ├── Properties │ │ └── Resources.Designer.cs │ ├── Resources.resx │ ├── build │ │ ├── Microsoft.Extensions.ApiDescription.Design.props │ │ └── Microsoft.Extensions.ApiDescription.Design.targets │ └── buildMultiTargeting │ │ └── Microsoft.Extensions.ApiDescription.Design.targets └── dotnet-getdocument │ ├── Commands │ └── InvokeCommand.cs │ ├── Exe.cs │ ├── Program.cs │ ├── Project.cs │ ├── ProjectOptions.cs │ ├── Properties │ └── Resources.Designer.cs │ ├── Resources.resx │ ├── ServiceProjectReferenceMetadata.targets │ └── dotnet-getdocument.csproj ├── test ├── Directory.Build.props ├── Microsoft.AspNetCore.Mvc.Abstractions.Test │ ├── Filters │ │ └── FilterContextTest.cs │ ├── Microsoft.AspNetCore.Mvc.Abstractions.Test.csproj │ ├── ModelBinding │ │ ├── BindingInfoTest.cs │ │ ├── ModelMetadataTest.cs │ │ ├── ModelStateDictionaryTest.cs │ │ └── ValueProviderResultTest.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── Microsoft.AspNetCore.Mvc.ApiExplorer.Test │ ├── ApiResponseTypeProviderTest.cs │ ├── DefaultApiDescriptionProviderTest.cs │ └── Microsoft.AspNetCore.Mvc.ApiExplorer.Test.csproj ├── Microsoft.AspNetCore.Mvc.Core.Test │ ├── AcceptedAtActionResultTests.cs │ ├── AcceptedAtRouteResultTests.cs │ ├── AcceptedResultTests.cs │ ├── ActionConstraints │ │ ├── ActionConstraintCacheTest.cs │ │ └── HttpMethodActionConstraintTest.cs │ ├── ActionResultOfTTest.cs │ ├── ApiConventionMethodAttributeTest.cs │ ├── ApiConventionTypeAttributeTest.cs │ ├── ApiExplorer │ │ ├── ApiConventionMatcherTest.cs │ │ └── ApiConventionResultTest.cs │ ├── ApplicationModels │ │ ├── ActionModelTest.cs │ │ ├── ApiBehaviorApplicationModelProviderTest.cs │ │ ├── ApiConventionApplicationModelConventionTest.cs │ │ ├── ApiVisibilityConventionTest.cs │ │ ├── AttributeRouteModelTests.cs │ │ ├── AuthorizationApplicationModelProviderTest.cs │ │ ├── ClientErrorResultFilterConventionTest.cs │ │ ├── ConsumesConstraintForFormFileParameterConventionTest.cs │ │ ├── ControllerActionDescriptorBuilderTest.cs │ │ ├── ControllerActionDescriptorProviderTests.cs │ │ ├── ControllerModelTest.cs │ │ ├── DefaultApplicationModelProviderTest.cs │ │ ├── InferParameterBindingInfoConventionTest.cs │ │ ├── InvalidModelStateFilterConventionTest.cs │ │ ├── ParameterModelTest.cs │ │ ├── PropertyModelTest.cs │ │ └── RouteTokenTransformerConventionTest.cs │ ├── ApplicationParts │ │ ├── ApplicationAssembliesProviderTest.cs │ │ ├── ApplicationPartManagerTest.cs │ │ ├── AssemblyPartTest.cs │ │ └── RelatedAssemblyPartTest.cs │ ├── Authorization │ │ └── AuthorizeFilterTest.cs │ ├── BadRequestObjectResultTests.cs │ ├── BadRequestResultTests.cs │ ├── BindAttributeTest.cs │ ├── Builder │ │ ├── MvcApplicationBuilderExtensionsTest.cs │ │ └── MvcAreaRouteBuilderExtensionsTest.cs │ ├── ChallengeResultTest.cs │ ├── ConflictObjectResultTest.cs │ ├── ConflictResultTest.cs │ ├── ConsumesAttributeTests.cs │ ├── ContentResultTest.cs │ ├── ControllerBaseTest.cs │ ├── Controllers │ │ ├── ControllerActivatorProviderTest.cs │ │ ├── ControllerBinderDelegateProviderTest.cs │ │ ├── ControllerFactoryProviderTest.cs │ │ ├── ControllerFeatureProviderTest.cs │ │ ├── DefaultControllerActivatorTest.cs │ │ ├── DefaultControllerFactoryTest.cs │ │ └── ServiceBasedControllerActivatorTest.cs │ ├── CreatedAtActionResultTests.cs │ ├── CreatedAtRouteResultTests.cs │ ├── CreatedResultTests.cs │ ├── DependencyInjection │ │ ├── ApiBehaviorOptionsSetupTest.cs │ │ ├── ApplicationModelConventionExtensionsTest.cs │ │ ├── MvcBuilderExtensionsTest.cs │ │ ├── MvcCoreBuilderExtensionsTest.cs │ │ └── MvcCoreServiceCollectionExtensionsTest.cs │ ├── EmptyResultTests.cs │ ├── FileContentResultTest.cs │ ├── FileResultTest.cs │ ├── FileStreamResultTest.cs │ ├── Filters │ │ ├── ActionFilterAttributeTests.cs │ │ ├── DisableRequestSizeLimitFilterTest.cs │ │ ├── FilterCollectionTest.cs │ │ ├── FilterFactoryTest.cs │ │ ├── FilterProviderTest.cs │ │ ├── MiddlewareFilterAttributeTest.cs │ │ ├── MiddlewareFilterBuilderTest.cs │ │ ├── MiddlewareFilterConfigurationProviderTest.cs │ │ ├── MiddlewareFilterTest.cs │ │ ├── RequestFormLimitsFilterTest.cs │ │ ├── RequestSizeLimitFilterTest.cs │ │ ├── ResponseCacheFilterExecutorTest.cs │ │ └── ResultFilterAttributeTest.cs │ ├── FlushReportingStream.cs │ ├── ForbidResultTest.cs │ ├── Formatters │ │ ├── AcceptHeaderParserTest.cs │ │ ├── FormatFilterTest.cs │ │ ├── FormatterCollectionTest.cs │ │ ├── FormatterMappingsTest.cs │ │ ├── InputFormatterTest.cs │ │ ├── MediaTypeTest.cs │ │ ├── NoContentFormatterTests.cs │ │ ├── OutputFormatterTests.cs │ │ ├── ResponseContentTypeHelperTest.cs │ │ ├── StreamOutputFormatterTest.cs │ │ ├── StringOutputFormatterTests.cs │ │ ├── TextInputFormatterTest.cs │ │ └── TextOutputFormatterTests.cs │ ├── HttpNotFoundObjectResultTest.cs │ ├── HttpNotFoundResultTests.cs │ ├── HttpOkObjectResultTest.cs │ ├── HttpOkResultTest.cs │ ├── HttpStatusCodeResultTests.cs │ ├── HttpUnauthorizedResultTests.cs │ ├── Infrastructure │ │ ├── ActionMethodExecutorTest.cs │ │ ├── ActionResultTypeMapperTest.cs │ │ ├── ActionSelectorTest.cs │ │ ├── ClientErrorResultFilterTest.cs │ │ ├── CompatibilitySwitchTest.cs │ │ ├── ConfigureCompatibilityOptionsTest.cs │ │ ├── ControllerActionInvokerCacheTest.cs │ │ ├── ControllerActionInvokerTest.cs │ │ ├── DefaultActionDescriptorCollectionProviderTest.cs │ │ ├── DefaultOutputFormatterSelectorTest.cs │ │ ├── ModelStateInvalidFilterTest.cs │ │ ├── MvcOptionsConfigureCompatibilityOptionsTest.cs │ │ ├── NonDisposableStreamTest.cs │ │ ├── NullableCompatibilitySwitchTest.cs │ │ ├── ObjectResultExecutorTest.cs │ │ ├── ParameterDefaultValuesTest.cs │ │ └── ProblemDetalsClientErrorFactoryTest.cs │ ├── LocalRedirectResultTest.cs │ ├── MediaTypeCollectionTest.cs │ ├── Microsoft.AspNetCore.Mvc.Core.Test.csproj │ ├── ModelBinding │ │ ├── Binders │ │ │ ├── ArrayModelBinderProviderTest.cs │ │ │ ├── ArrayModelBinderTest.cs │ │ │ ├── BinderTypeModelBinderProviderTest.cs │ │ │ ├── BinderTypeModelBinderTest.cs │ │ │ ├── BodyModelBinderProviderTest.cs │ │ │ ├── BodyModelBinderTests.cs │ │ │ ├── ByteArrayModelBinderProviderTest.cs │ │ │ ├── ByteArrayModelBinderTests.cs │ │ │ ├── CancellationTokenModelBinderProviderTest.cs │ │ │ ├── CancellationTokenModelBinderTests.cs │ │ │ ├── CollectionModelBinderProviderTest.cs │ │ │ ├── CollectionModelBinderTest.cs │ │ │ ├── ComplexTypeModelBinderProviderTest.cs │ │ │ ├── ComplexTypeModelBinderTest.cs │ │ │ ├── DecimalModelBinderTest.cs │ │ │ ├── DictionaryModelBinderProviderTest.cs │ │ │ ├── DictionaryModelBinderTest.cs │ │ │ ├── DoubleModelBinderTest.cs │ │ │ ├── EnumTypeModelBinderProviderTest.cs │ │ │ ├── EnumTypeModelBinderTest.cs │ │ │ ├── FloatModelBinderTest.cs │ │ │ ├── FloatingPointTypeModelBinderProviderTest.cs │ │ │ ├── FloatingPointTypeModelBinderTestOfT.cs │ │ │ ├── FormCollectionModelBinderProviderTest.cs │ │ │ ├── FormCollectionModelBinderTest.cs │ │ │ ├── FormFileModelBinderProviderTest.cs │ │ │ ├── FormFileModelBinderTest.cs │ │ │ ├── HeaderModelBinderProviderTest.cs │ │ │ ├── HeaderModelBinderTests.cs │ │ │ ├── KeyValuePairModelBinderProviderTest.cs │ │ │ ├── KeyValuePairModelBinderTest.cs │ │ │ ├── ServicesModelBinderProviderTest.cs │ │ │ ├── ServicesModelBinderTest.cs │ │ │ ├── SimpleTypeModelBinderProviderTest.cs │ │ │ └── SimpleTypeModelBinderTest.cs │ │ ├── BindingSourceValueProviderTest.cs │ │ ├── CompositeValueProviderTest.cs │ │ ├── DefaultModelBindingContextTest.cs │ │ ├── ElementalValueProviderTests.cs │ │ ├── EnumerableValueProviderTest.cs │ │ ├── FormValueProviderFactoryTest.cs │ │ ├── FormValueProviderTest.cs │ │ ├── JQueryFormValueProviderFactoryTest.cs │ │ ├── JQueryFormValueProviderTest.cs │ │ ├── JQueryQueryStringValueProviderFactoryTest.cs │ │ ├── JQueryQueryStringValueProviderTest.cs │ │ ├── Metadata │ │ │ ├── BindingSourceMetadataProviderTests.cs │ │ │ ├── BindingSourceTest.cs │ │ │ ├── CompositeBindingSourceTest.cs │ │ │ ├── DefaultBindingMetadataProviderTest.cs │ │ │ ├── DefaultModelMetadataProviderTest.cs │ │ │ ├── DefaultModelMetadataTest.cs │ │ │ ├── DefaultValidationMetadataProviderTest.cs │ │ │ ├── DisplayMetadataTest.cs │ │ │ ├── EmptyCompositeMetadataDetailsProvider.cs │ │ │ ├── ExcludeBindingMetadataProviderTest.cs │ │ │ ├── HasValidatorsValidationMetadataProviderTest.cs │ │ │ ├── MetadataDetailsProviderExtensionsTest.cs │ │ │ ├── ModelAttributesTest.cs │ │ │ ├── ModelBinderAttributeTest.cs │ │ │ └── ModelMetadataProviderExtensionsTest.cs │ │ ├── ModelBinderFactoryTest.cs │ │ ├── ModelBinderProviderExtensionsTest.cs │ │ ├── ModelBindingHelperTest.cs │ │ ├── ModelBindingResultTest.cs │ │ ├── ParameterBinderTest.cs │ │ ├── PrefixContainerTest.cs │ │ ├── QueryStringValueProviderFactoryTest.cs │ │ ├── QueryStringValueProviderTest.cs │ │ ├── ReferenceEqualityComparerTest.cs │ │ ├── RouteValueProviderTests.cs │ │ ├── StubModelBinder.cs │ │ ├── TestModelBinderProviderContext.cs │ │ ├── TestValueProvider.cs │ │ ├── UnsupportedContentTypeFilterTest.cs │ │ ├── Validation │ │ │ ├── ClientValidatorCacheTest.cs │ │ │ ├── CompositeModelValidatorProviderTest.cs │ │ │ ├── DefaultCollectionValidationStrategyTest.cs │ │ │ ├── DefaultComplexObjectValidationStrategyTest.cs │ │ │ ├── DefaultModelValidatorProviderTest.cs │ │ │ ├── DefaultObjectValidatorTests.cs │ │ │ ├── ExplicitIndexCollectionValidationStrategyTest.cs │ │ │ ├── ModelValidatorProviderExtensionsTest.cs │ │ │ ├── ShortFormDictionaryValidationStrategyTest.cs │ │ │ ├── ValidationStackTest.cs │ │ │ └── ValidatorCacheTest.cs │ │ └── ValueProviderFactoryExtensionsTest.cs │ ├── MvcCoreLoggerExtensionsTest.cs │ ├── MvcOptionsTest.cs │ ├── ObjectResultTests.cs │ ├── PhysicalFileResultTest.cs │ ├── ProducesAttributeTests.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RedirectResultTest.cs │ ├── RedirectToActionResultTest.cs │ ├── RedirectToPageResultTest.cs │ ├── RedirectToRouteResultTest.cs │ ├── RequestFormLimitsAttributeTest.cs │ ├── RequireHttpsAttributeTests.cs │ ├── ResponseCacheAttributeTest.cs │ ├── Routing │ │ ├── AttributeRouteTest.cs │ │ ├── AttributeRoutingTest.cs │ │ ├── ConsumesMatcherPolicyTest.cs │ │ ├── ControllerLinkGeneratorExtensionsTest.cs │ │ ├── EndpointRoutingUrlHelperTest.cs │ │ ├── HttpMethodProviderAttributesTests.cs │ │ ├── KnownRouteValueConstraintTests.cs │ │ ├── MvcEndpointDataSourceTests.cs │ │ ├── MvcRouteHandlerTests.cs │ │ ├── PageLinkGeneratorExtensionsTest.cs │ │ ├── RoutePatternWriterTests.cs │ │ ├── RouteTemplateProviderAttributesTest.cs │ │ ├── UrlHelperBaseTest.cs │ │ ├── UrlHelperExtensionsTest.cs │ │ ├── UrlHelperTest.cs │ │ ├── UrlHelperTestBase.cs │ │ └── ViewEnginePathTest.cs │ ├── SerializableErrorTests.cs │ ├── ServiceFilterAttributeTest.cs │ ├── SignInResultTest.cs │ ├── SignOutResultTest.cs │ ├── TestApplicationPart.cs │ ├── TestFeatureProvider.cs │ ├── TypeFilterAttributeTest.cs │ ├── UnprocessableEntityObjectResultTests.cs │ ├── UnprocessableEntityResultTests.cs │ ├── ValidationProblemDetailsTest.cs │ ├── VirtualFileResultTest.cs │ └── xunit.runner.json ├── Microsoft.AspNetCore.Mvc.Core.TestCommon │ ├── ActivityReplacer.cs │ ├── CommonFilterTest.cs │ ├── CommonResourceInvokerTest.cs │ ├── LinkBuilder.cs │ ├── MediaTypeAssert.cs │ ├── Microsoft.AspNetCore.Mvc.Core.TestCommon.csproj │ ├── NonSeekableReadableStream.cs │ ├── RoutingResult.cs │ ├── SimpleValueProvider.cs │ ├── SimpleValueProviderFactory.cs │ ├── TestClientModelValidatorProvider.cs │ ├── TestHttpRequestStreamReaderFactory.cs │ ├── TestHttpResponseStreamWriterFactory.cs │ ├── TestModelBinderFactory.cs │ ├── TestModelMetadataProvider.cs │ ├── TestModelValidatorProvider.cs │ └── ValidationAttributeUtil.cs ├── Microsoft.AspNetCore.Mvc.Cors.Test │ ├── CorsApplicationModelProviderTest.cs │ ├── CorsAuthorizationFilterTest.cs │ ├── CorsHttpMethodActionConstraintTest.cs │ ├── DisableCorsAuthorizationFilterTest.cs │ └── Microsoft.AspNetCore.Mvc.Cors.Test.csproj ├── Microsoft.AspNetCore.Mvc.DataAnnotations.Test │ ├── CompareAttributeAdapterTest.cs │ ├── DataAnnotationsClientModelValidatorProviderTest.cs │ ├── DataAnnotationsMetadataProviderTest.cs │ ├── DataAnnotationsModelValidatorProviderTest.cs │ ├── DataAnnotationsModelValidatorTest.cs │ ├── DataMemberRequiredBindingMetadataProviderTest.cs │ ├── DataTypeClientModelValidatorProviderTest.cs │ ├── DefaultModelClientValidatorProviderTest.cs │ ├── FileExtensionsAttributeAdapterTest.cs │ ├── MaxLengthAttributeAdapterTest.cs │ ├── Microsoft.AspNetCore.Mvc.DataAnnotations.Test.csproj │ ├── MinLengthAttributeAdapterTest.cs │ ├── ModelMetadataProviderTest.cs │ ├── ModelValidationResultComparer.cs │ ├── MvcDataAnnotationsMvcOptionsSetup.cs │ ├── NumericClientModelValidatorTest.cs │ ├── Properties │ │ └── Resources.Designer.cs │ ├── RangeAttributeAdapterTest.cs │ ├── RequiredAttributeAdapterTest.cs │ ├── Resources.resx │ ├── StringLengthAttributeAdapterTest.cs │ ├── TestModelNameProvider.cs │ ├── TestResources.cs │ ├── ValidatableObjectAdapterTest.cs │ ├── ValidationAttributeAdapterOfTAttributeTest.cs │ └── ValidationAttributeAdapterProviderTest.cs ├── Microsoft.AspNetCore.Mvc.Formatters.Json.Test │ ├── JsonInputFormatterTest.cs │ ├── JsonOutputFormatterTests.cs │ ├── JsonPatchInputFormatterTest.cs │ ├── JsonPatchOperationsArrayProviderTests.cs │ ├── JsonResultExecutorTest.cs │ ├── JsonResultTest.cs │ ├── Microsoft.AspNetCore.Mvc.Formatters.Json.Test.csproj │ └── MvcJsonOptionsExtensionsTests.cs ├── Microsoft.AspNetCore.Mvc.Formatters.Xml.Test │ ├── DelegatingEnumerableTest.cs │ ├── DelegatingEnumeratorTest.cs │ ├── DependencyInjection │ │ ├── XmlDataContractSerializerMvcOptionsSetupTest.cs │ │ └── XmlSerializerMvcOptionsSetupTest.cs │ ├── EnumerableWrapperProviderFactoryTest.cs │ ├── EnumerableWrapperProviderTest.cs │ ├── FlushReportingStream.cs │ ├── Microsoft.AspNetCore.Mvc.Formatters.Xml.Test.csproj │ ├── Models │ │ ├── Person.cs │ │ └── PersonList.cs │ ├── PersonWrapper.cs │ ├── PersonWrapperProvider.cs │ ├── PersonWrapperProviderFactory.cs │ ├── ProblemDetails21WrapperTest.cs │ ├── ProblemDetailsWrapperProviderFactoryTest.cs │ ├── ProblemDetailsWrapperTest.cs │ ├── SerializableErrorWrapperProviderTest.cs │ ├── SerializableErrorWrapperTests.cs │ ├── SerializableWrapperProviderFactoryTest.cs │ ├── ValidationProblemDetails21WrapperTest.cs │ ├── ValidationProblemDetailsWrapperTest.cs │ ├── XmlAssert.cs │ ├── XmlAssertTest.cs │ ├── XmlDataContractSerializerInputFormatterTest.cs │ ├── XmlDataContractSerializerOutputFormatterTest.cs │ ├── XmlSerializerInputFormatterTest.cs │ └── XmlSerializerOutputFormatterTest.cs ├── Microsoft.AspNetCore.Mvc.FunctionalTests │ ├── AntiforgeryAuthTests.cs │ ├── AntiforgeryTestHelper.cs │ ├── AntiforgeryTests.cs │ ├── ApiBehaviorTest.cs │ ├── ApiExplorerTest.cs │ ├── ApplicationModelTest.cs │ ├── AsyncActionsTests.cs │ ├── BasicApiTest.cs │ ├── BasicTests.cs │ ├── BasicViewsTest.cs │ ├── CompilationOptionsTests.cs │ ├── ConsumesAttributeEndpointRoutingTests.cs │ ├── ConsumesAttributeTests.cs │ ├── ConsumesAttributeTestsBase.cs │ ├── ContentNegotiationTest.cs │ ├── ControllerFromServicesTests.cs │ ├── CorsEndpointRoutingTests.cs │ ├── CorsTests.cs │ ├── CorsTestsBase.cs │ ├── DataAnnotationTests.cs │ ├── DefaultValuesTest.cs │ ├── DirectivesTest.cs │ ├── DoNotRespectBrowserAcceptHeaderTests.cs │ ├── ErrorPageTests.cs │ ├── ExceptionInfo.cs │ ├── FileResultTests.cs │ ├── FiltersTest.cs │ ├── FlushPointTest.cs │ ├── FormFileUploadTest.cs │ ├── GlobalAuthorizationFilterTest.cs │ ├── HtmlGenerationTest.cs │ ├── HtmlGenerationWithCultureTest.cs │ ├── HtmlHelperOptionsTest.cs │ ├── Infrastructure │ │ ├── BasicApiFixture.cs │ │ ├── BasicViewsFixture.cs │ │ ├── CultureReplacerMiddleware.cs │ │ ├── CultureReplacerStartupFilter.cs │ │ ├── HttpClientExtensions.cs │ │ ├── IHtmlDocumentExtensions.cs │ │ ├── MvcEncodedTestFixtureOfT.cs │ │ ├── MvcTestFixture.cs │ │ ├── MvcWebApplicationBuilderExtensions.cs │ │ ├── ResourceFile.cs │ │ └── TestCulture.cs │ ├── InputFormatterTests.cs │ ├── InputObjectValidationTests.cs │ ├── InputValidationTests.cs │ ├── JsonOutputFormatterTests.cs │ ├── JsonPatchInputFormatterTest.cs │ ├── JsonResultTest.cs │ ├── LinkGenerationTests.cs │ ├── LinkGeneratorTest.cs │ ├── Microsoft.AspNetCore.Mvc.FunctionalTests.csproj │ ├── MvcSandboxTest.cs │ ├── OutputFormatterTest.cs │ ├── RazorBuildTest.cs │ ├── RazorPageModelTest.cs │ ├── RazorPagesNamespaceTest.cs │ ├── RazorPagesTest.cs │ ├── RazorPagesViewSearchTest.cs │ ├── RazorPagesWithBasePathTest.cs │ ├── RazorViewLocationSpecificationTest.cs │ ├── RemoteAttributeValidationTest.cs │ ├── RequestFormLimitsTest.cs │ ├── RequestServicesEndpointRoutingTest.cs │ ├── RequestServicesTest.cs │ ├── RequestServicesTestBase.cs │ ├── RequestSizeLimitTest.cs │ ├── RespectBrowserAcceptHeaderTests.cs │ ├── RoutingEndpointRoutingTest.cs │ ├── RoutingEndpointRoutingWithoutRazorPagesTests.cs │ ├── RoutingTests.cs │ ├── RoutingTestsBase.cs │ ├── RoutingWithoutRazorPagesTests.cs │ ├── RoutingWithoutRazorPagesTestsBase.cs │ ├── SerializableErrorTests.cs │ ├── SimpleTests.cs │ ├── StreamOutputFormatterTest.cs │ ├── TagHelperComponentTagHelperTest.cs │ ├── TagHelpersFromServicesTest.cs │ ├── TagHelpersTest.cs │ ├── TempDataInCookiesTest.cs │ ├── TempDataInCookiesUsingCookieConsentTest.cs │ ├── TempDataInSessionTest.cs │ ├── TempDataPropertyTest.cs │ ├── TempDataTestBase.cs │ ├── TestingInfrastructureInheritanceTests.cs │ ├── TestingInfrastructureTests.cs │ ├── UrlResolutionTest.cs │ ├── VersioningEndpointRoutingTests.cs │ ├── VersioningTests.cs │ ├── VersioningTestsBase.cs │ ├── ViewComponentFromServicesTests.cs │ ├── ViewEngineTests.cs │ ├── XmlDataContractSerializerFormattersWrappingTest.cs │ ├── XmlDataContractSerializerInputFormatterTest.cs │ ├── XmlOutputFormatterTests.cs │ ├── XmlSerializerFormattersWrappingTest.cs │ ├── XmlSerializerInputFormatterTests.cs │ ├── compiler │ │ └── resources │ │ │ ├── BasicWebSite.Area1.RemoteAttribute_Home.Create.html │ │ │ ├── BasicWebSite.Home.ActionLinkView.html │ │ │ ├── BasicWebSite.Home.CSharp7View.html │ │ │ ├── BasicWebSite.Home.Index.html │ │ │ ├── BasicWebSite.Home.PlainView.html │ │ │ ├── BasicWebSite.Home.ViewWithPrefixedAttributeValue.html │ │ │ ├── BasicWebSite.PassThrough.Index.html │ │ │ ├── BasicWebSite.Root.RemoteAttribute_Home.Create.html │ │ │ ├── CacheTagHelper_CanCachePortionsOfViewsPartialViewsAndViewComponents.Assert1.txt │ │ │ ├── CacheTagHelper_CanCachePortionsOfViewsPartialViewsAndViewComponents.Assert2.txt │ │ │ ├── CacheTagHelper_CanCachePortionsOfViewsPartialViewsAndViewComponents.Assert3.txt │ │ │ ├── HtmlGenerationWebSite.CheckViewData.AtViewModel.html │ │ │ ├── HtmlGenerationWebSite.CheckViewData.NullViewModel.html │ │ │ ├── HtmlGenerationWebSite.CheckViewData.ViewModel.html │ │ │ ├── HtmlGenerationWebSite.HtmlGeneration_Customer.Index.html │ │ │ ├── HtmlGenerationWebSite.HtmlGeneration_Home.AttributesWithBooleanValues.Encoded.html │ │ │ ├── HtmlGenerationWebSite.HtmlGeneration_Home.AttributesWithBooleanValues.html │ │ │ ├── HtmlGenerationWebSite.HtmlGeneration_Home.CreateWarehouse.html │ │ │ ├── HtmlGenerationWebSite.HtmlGeneration_Home.Customer.html │ │ │ ├── HtmlGenerationWebSite.HtmlGeneration_Home.EditWarehouse.Encoded.html │ │ │ ├── HtmlGenerationWebSite.HtmlGeneration_Home.EditWarehouse.html │ │ │ ├── HtmlGenerationWebSite.HtmlGeneration_Home.EmployeeList.html │ │ │ ├── HtmlGenerationWebSite.HtmlGeneration_Home.Environment.html │ │ │ ├── HtmlGenerationWebSite.HtmlGeneration_Home.Form.html │ │ │ ├── HtmlGenerationWebSite.HtmlGeneration_Home.Image.html │ │ │ ├── HtmlGenerationWebSite.HtmlGeneration_Home.Index.Encoded.html │ │ │ ├── HtmlGenerationWebSite.HtmlGeneration_Home.Index.html │ │ │ ├── HtmlGenerationWebSite.HtmlGeneration_Home.Index21Compat.html │ │ │ ├── HtmlGenerationWebSite.HtmlGeneration_Home.Input.html │ │ │ ├── HtmlGenerationWebSite.HtmlGeneration_Home.Link.Encoded.html │ │ │ ├── HtmlGenerationWebSite.HtmlGeneration_Home.Link.html │ │ │ ├── HtmlGenerationWebSite.HtmlGeneration_Home.Order.Encoded.html │ │ │ ├── HtmlGenerationWebSite.HtmlGeneration_Home.Order.html │ │ │ ├── HtmlGenerationWebSite.HtmlGeneration_Home.OrderUsingHtmlHelpers.Encoded.html │ │ │ ├── HtmlGenerationWebSite.HtmlGeneration_Home.OrderUsingHtmlHelpers.html │ │ │ ├── HtmlGenerationWebSite.HtmlGeneration_Home.PartialTagHelperWithoutModel.html │ │ │ ├── HtmlGenerationWebSite.HtmlGeneration_Home.Product.Encoded.html │ │ │ ├── HtmlGenerationWebSite.HtmlGeneration_Home.Product.html │ │ │ ├── HtmlGenerationWebSite.HtmlGeneration_Home.ProductList.html │ │ │ ├── HtmlGenerationWebSite.HtmlGeneration_Home.ProductListUsingTagHelpers.html │ │ │ ├── HtmlGenerationWebSite.HtmlGeneration_Home.ProductListUsingTagHelpersWithNullModel.html │ │ │ ├── HtmlGenerationWebSite.HtmlGeneration_Home.Script.Encoded.html │ │ │ ├── HtmlGenerationWebSite.HtmlGeneration_Home.Script.html │ │ │ ├── HtmlGenerationWebSite.HtmlGeneration_Home.Warehouse.html │ │ │ ├── ModelBindingWebSite.Vehicle.Details.html │ │ │ ├── ModelBindingWebSite.Vehicle.Edit.Invalid.html │ │ │ ├── ModelBindingWebSite.Vehicle.Edit.html │ │ │ ├── RazorPagesWebSite.SimpleForms.html │ │ │ ├── RazorWebSite.AddTagHelperComponent.AddComponent.html │ │ │ ├── RazorWebSite.TagHelperComponent.Body.html │ │ │ ├── RazorWebSite.TagHelperComponent.Head.html │ │ │ ├── RazorWebSite.UrlResolution.Index.Encoded.html │ │ │ ├── RazorWebSite.UrlResolution.Index.html │ │ │ ├── TagHelpersWebSite.Employee.Create.Invalid.html │ │ │ ├── TagHelpersWebSite.Employee.Create.html │ │ │ ├── TagHelpersWebSite.Employee.Details.AfterCreate.html │ │ │ ├── TagHelpersWebSite.Employee.DuplicateAntiforgeryTokenRegistration.html │ │ │ ├── TagHelpersWebSite.Encoders.CustomEncoder.html │ │ │ ├── TagHelpersWebSite.Encoders.Index.html │ │ │ ├── TagHelpersWebSite.Encoders.NullEncoder.html │ │ │ ├── TagHelpersWebSite.Encoders.ThreeEncoders.html │ │ │ ├── TagHelpersWebSite.Encoders.TwoEncoders.html │ │ │ ├── TagHelpersWebSite.Home.About.html │ │ │ ├── TagHelpersWebSite.Home.Help.html │ │ │ ├── TagHelpersWebSite.Home.Index.html │ │ │ ├── TagHelpersWebSite.Home.UnboundDynamicAttributes.Encoded.html │ │ │ ├── TagHelpersWebSite.Home.UnboundDynamicAttributes.html │ │ │ ├── TagHelpersWebSite.Home.ViewComponentTagHelpers.html │ │ │ ├── UpdateDealerVehicle_PopulatesPropertyErrorsInViews.txt │ │ │ ├── UpdateDealerVehicle_PopulatesValidationSummary.txt │ │ │ ├── UpdateDealerVehicle_UpdateSuccessful.txt │ │ │ └── ViewEngineController.ViewWithPaths.txt │ └── xunit.runner.json ├── Microsoft.AspNetCore.Mvc.IntegrationTests │ ├── ActionParametersIntegrationTest.cs │ ├── ArrayModelBinderIntegrationTest.cs │ ├── AuthorizeFilterIntegrationTest.cs │ ├── BindPropertyIntegrationTest.cs │ ├── BinderTypeBasedModelBinderIntegrationTest.cs │ ├── BindingSourceMetadataProviderIntegrationTest.cs │ ├── BodyValidationIntegrationTests.cs │ ├── ByteArrayModelBinderIntegrationTest.cs │ ├── CancellationTokenModelBinderIntegrationTest.cs │ ├── CollectionModelBinderIntegrationTest.cs │ ├── CompanyNameAttribute.cs │ ├── ComplexTypeModelBinderIntegrationTest.cs │ ├── DictionaryModelBinderIntegrationTest.cs │ ├── ExcludeBindingMetadataProviderIntegrationTest.cs │ ├── FormCollectionModelBindingIntegrationTest.cs │ ├── FormFileModelBindingIntegrationTest.cs │ ├── GenericModelBinderIntegrationTest.cs │ ├── HasValidatorsValidationMetadataProviderIntegrationTest.cs │ ├── HeaderModelBinderIntegrationTest.cs │ ├── JQueryFormatModelBindingIntegrationTest.cs │ ├── KeyValuePairModelBinderIntegrationTest.cs │ ├── Microsoft.AspNetCore.Mvc.IntegrationTests.csproj │ ├── ModelBindingTestContext.cs │ ├── ModelBindingTestHelper.cs │ ├── ModelPrefixSelectionIntegrationTest.cs │ ├── Models │ │ ├── Product.cs │ │ ├── ProductDetails.cs │ │ ├── ProductViewModel.cs │ │ ├── Software.cs │ │ └── SoftwareViewModel.cs │ ├── ParameterBinderExtensions.cs │ ├── ProductValidatorAttribute.cs │ ├── ServicesModelBinderIntegrationTest.cs │ ├── SimpleTypeModelBinderIntegrationTest.cs │ ├── TestMvcOptions.cs │ ├── TryUpdateModelIntegrationTest.cs │ ├── TryValidateModelIntegrationTest.cs │ └── ValidationIntegrationTests.cs ├── Microsoft.AspNetCore.Mvc.Localization.Test │ ├── HtmlLocalizerOfTTest.cs │ ├── HtmlLocalizerTest.cs │ ├── Microsoft.AspNetCore.Mvc.Localization.Test.csproj │ ├── MvcLocalizationMvcBuilderExtensionsTest.cs │ ├── MvcLocalizationMvcCoreBuilderExtensionsTest.cs │ ├── MvcLocalizationServiceCollectionExtensionsTest.cs │ ├── TestStringLocalizer.cs │ └── ViewLocalizerTest.cs ├── Microsoft.AspNetCore.Mvc.Razor.Test │ ├── ApplicationParts │ │ └── RazorCompiledItemFeatureProviderTest.cs │ ├── Compilation │ │ ├── DefaultRazorPageFactoryProviderTest.cs │ │ ├── RazorPagePropertyActivatorTest.cs │ │ ├── RazorViewCompilerTest.cs │ │ └── ViewsFeatureProviderTest.cs │ ├── DefaultTagHelperFactoryTest.cs │ ├── DependencyInjection │ │ ├── MvcRazorMvcBuilderExtensionsTest.cs │ │ └── MvcRazorMvcCoreBuilderExtensionsTest.cs │ ├── Infrastructure │ │ └── DefaultTagHelperActivatorTest.cs │ ├── LanguageViewLocationExpanderTest.cs │ ├── Microsoft.AspNetCore.Mvc.Razor.Test.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RazorFileHierarchyTest.cs │ ├── RazorPageActivatorTest.cs │ ├── RazorPageCreateModelExpressionTest.cs │ ├── RazorPageCreateTagHelperTest.cs │ ├── RazorPageTest.cs │ ├── RazorViewEngineOptionsTest.cs │ ├── RazorViewEngineTest.cs │ ├── RazorViewTest.cs │ ├── TagHelpers │ │ ├── TagHelperComponentPropertyActivatorTest.cs │ │ ├── TagHelperComponentTagHelperTest.cs │ │ └── UrlResolutionTagHelperTest.cs │ ├── TestApplicationPart.cs │ ├── ViewPathTest.cs │ └── xunit.runner.json ├── Microsoft.AspNetCore.Mvc.RazorPages.Test │ ├── ApplicationModels │ │ ├── AuthorizationPageApplicationModelProviderTest.cs │ │ ├── CompiledPageActionDescriptorBuilderTest.cs │ │ ├── CompiledPageRouteModelProviderTest.cs │ │ ├── DefaultPageApplicationModelProviderTest.cs │ │ ├── PageConventionCollectionTest.cs │ │ ├── PageRouteModelFactoryTest.cs │ │ ├── PageRouteTransformerConventionTest.cs │ │ ├── ResponseCacheFilterApplicationModelProviderTest.cs │ │ ├── TempDataFilterPageApplicationModelProviderTest.cs │ │ └── ViewDataAttributePageApplicationModelProviderTest.cs │ ├── DependencyInjection │ │ ├── MvcRazorPagesMvcBuilderExtensionsTest.cs │ │ ├── PageConventionCollectionExtensionsTest.cs │ │ └── RazorPagesRazorViewEngineOptionsSetupTest.cs │ ├── Filters │ │ ├── AutoValidateAntiforgeryPageApplicationModelProviderTest.cs │ │ ├── PageHandlerResultFilterTest.cs │ │ ├── PageSaveTempDataPropertyFilterFactoryTest.cs │ │ ├── PageSaveTempDataPropertyFilterTest.cs │ │ ├── PageViewDataAttributeFilterFactoryTest.cs │ │ └── PageViewDataAttributeFilterTest.cs │ ├── Infrastructure │ │ ├── DefaultPageActivatorProviderTest.cs │ │ ├── DefaultPageFactoryProviderTest.cs │ │ ├── DefaultPageHandlerMethodSelectorTest.cs │ │ ├── DefaultPageLoaderTest.cs │ │ ├── DefaultPageModelActivatorProviderTest.cs │ │ ├── DefaultPageModelFactoryProviderTest.cs │ │ ├── DisallowOptionsRequestsPageFilterTest.cs │ │ ├── ExecutorFactoryTest.cs │ │ ├── PageActionDescriptorProviderTest.cs │ │ ├── PageActionInvokerProviderTest.cs │ │ ├── PageActionInvokerTest.cs │ │ ├── PageBinderFactoryTest.cs │ │ ├── PageHandlerPageFilterTest.cs │ │ ├── PageViewLocationExpanderTest.cs │ │ └── ServiceBasedPageModelActivatorProviderTest.cs │ ├── Microsoft.AspNetCore.Mvc.RazorPages.Test.csproj │ ├── PageModelTest.cs │ └── PageTest.cs ├── Microsoft.AspNetCore.Mvc.TagHelpers.Test │ ├── AnchorTagHelperTest.cs │ ├── AttributeMatcherTest.cs │ ├── CacheTagHelperTest.cs │ ├── CacheTagKeyTest.cs │ ├── DefaultFileVersionProviderTest.cs │ ├── DefaultTagHelperActivatorTest.cs │ ├── DistributedCacheTagHelperTest.cs │ ├── EnvironmentTagHelperTest.cs │ ├── FormActionTagHelperTest.cs │ ├── FormTagHelperTest.cs │ ├── GlobbingUrlBuilderTest.cs │ ├── ImageTagHelperTest.cs │ ├── InputTagHelperTest.cs │ ├── JavaScriptResourcesTest.cs │ ├── LabelTagHelperTest.cs │ ├── LinkTagHelperTest.cs │ ├── Microsoft.AspNetCore.Mvc.TagHelpers.Test.csproj │ ├── OptionTagHelperTest.cs │ ├── PartialTagHelperTest.cs │ ├── RenderAtEndOfFormTagHelperTest.cs │ ├── ScriptTagHelperTest.cs │ ├── SelectTagHelperTest.cs │ ├── TagHelperLogger.cs │ ├── TagHelperOutputExtensionsTest.cs │ ├── TestableHtmlGenerator.cs │ ├── TextAreaTagHelperTest.cs │ ├── ValidationMessageTagHelperTest.cs │ └── ValidationSummaryTagHelperTest.cs ├── Microsoft.AspNetCore.Mvc.Test │ ├── ApplicationParts │ │ └── ApplicationAssembliesProviderTest.cs │ ├── IntegrationTest │ │ └── CompatibilitySwitchIntegrationTest.cs │ ├── JsonPatchExtensionsTest.cs │ ├── Microsoft.AspNetCore.Mvc.Test.csproj │ ├── MvcOptionsSetupTest.cs │ ├── MvcServiceCollectionExtensionsTest.cs │ ├── Routing │ │ └── ActionConstraintMatcherPolicyTest.cs │ └── xunit.runner.json ├── Microsoft.AspNetCore.Mvc.TestDiagnosticListener │ ├── IProxyActionContext.cs │ ├── IProxyActionDescriptor.cs │ ├── IProxyActionResult.cs │ ├── IProxyHttpContext.cs │ ├── IProxyPage.cs │ ├── IProxyRouteData.cs │ ├── IProxyView.cs │ ├── IProxyViewComponentContext.cs │ ├── IProxyViewComponentResult.cs │ ├── IProxyViewContext.cs │ ├── Microsoft.AspNetCore.Mvc.TestDiagnosticListener.csproj │ └── TestDiagnosticListener.cs ├── Microsoft.AspNetCore.Mvc.ViewFeatures.Test │ ├── AntiforgeryExtensionsTest.cs │ ├── AttributeDictionaryTest.cs │ ├── Buffers │ │ ├── PagedBufferedTextWriterTest.cs │ │ ├── PagedCharBufferTest.cs │ │ ├── ViewBufferTest.cs │ │ └── ViewBufferTextWriterTest.cs │ ├── CachedExpressionCompilerTest.cs │ ├── ControllerTest.cs │ ├── ControllerUnitTestabilityTests.cs │ ├── CookieTempDataProviderTest.cs │ ├── DefaultDisplayTemplatesTest.cs │ ├── DefaultEditorTemplatesTest.cs │ ├── DefaultHtmlGeneratorTest.cs │ ├── DefaultValidationHtmlAttributeProviderTest.cs │ ├── DependencyInjection │ │ ├── MvcViewFeaturesMvcBuilderExtensionsTest.cs │ │ └── MvcViewFeaturesMvcCoreBuilderExtensionsTest.cs │ ├── ExpressionHelperTest.cs │ ├── ExpressionMetadataProviderTest.cs │ ├── Filters │ │ ├── AutoValidateAntiforgeryTokenAuthorizationFilterTest.cs │ │ ├── ControllerSaveTempDataPropertyFilterFactoryTest.cs │ │ ├── ControllerSaveTempDataPropertyFilterTest.cs │ │ ├── ControllerViewDataAttributeFilterFactoryTest.cs │ │ ├── ControllerViewDataAttributeFilterTest.cs │ │ ├── LifecyclePropertyTest.cs │ │ ├── SaveTempDataFilterTest.cs │ │ ├── TempDataApplicationModelProviderTest.cs │ │ ├── TempDataSerializerTest.cs │ │ ├── ValidateAntiforgeryTokenAuthorizationFilterTest.cs │ │ ├── ViewDataAttributeApplicationModelProviderTest.cs │ │ └── ViewDataAttributePropertyProviderTest.cs │ ├── FormatWeekHelperTest.cs │ ├── HtmlAttributePropertyHelperTest.cs │ ├── JsonHelperTest.cs │ ├── MemberExpressionCacheKeyComparerTest.cs │ ├── MemberExpressionCacheKeyTest.cs │ ├── Microsoft.AspNetCore.Mvc.ViewFeatures.Test.csproj │ ├── Model │ │ ├── Constants.cs │ │ └── Model.cs │ ├── ModelExplorerExtensionsTest.cs │ ├── ModelExplorerTest.cs │ ├── ModelStateDictionaryExtensionsTest.cs │ ├── PageRemoteAttributeTest.cs │ ├── PartialViewResultExecutorTest.cs │ ├── PartialViewResultTest.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Resources.Designer.cs │ ├── RemoteAttributeBaseTest.cs │ ├── RemoteAttributeTest.cs │ ├── Rendering │ │ ├── DefaultTemplatesUtilities.cs │ │ ├── HtmlHelperCheckboxTest.cs │ │ ├── HtmlHelperDisplayExtensionsTest.cs │ │ ├── HtmlHelperDisplayNameExtensionsTest.cs │ │ ├── HtmlHelperDisplayTextTest.cs │ │ ├── HtmlHelperDropDownListExtensionsTest.cs │ │ ├── HtmlHelperEditorExtensionsTest.cs │ │ ├── HtmlHelperFormExtensionsTest.cs │ │ ├── HtmlHelperFormTest.cs │ │ ├── HtmlHelperHiddenTest.cs │ │ ├── HtmlHelperLabelExtensionsTest.cs │ │ ├── HtmlHelperLinkGenerationTest.cs │ │ ├── HtmlHelperListBoxExtensionsTest.cs │ │ ├── HtmlHelperNameExtensionsTest.cs │ │ ├── HtmlHelperPartialExtensionsTest.cs │ │ ├── HtmlHelperPasswordTest.cs │ │ ├── HtmlHelperRadioButtonExtensionsTest.cs │ │ ├── HtmlHelperSelectTest.cs │ │ ├── HtmlHelperTest.cs │ │ ├── HtmlHelperTextAreaExtensionsTest.cs │ │ ├── HtmlHelperTextAreaTest.cs │ │ ├── HtmlHelperTextBoxExtensionsTest.cs │ │ ├── HtmlHelperTextBoxTest.cs │ │ ├── HtmlHelperValidationMessageExtensionsTest.cs │ │ ├── HtmlHelperValidationSummaryTest.cs │ │ ├── HtmlHelperValueExtensionsTest.cs │ │ ├── HtmlHelperValueTest.cs │ │ ├── HtmlStringTest.cs │ │ ├── TagBuilderTest.cs │ │ ├── TestResources.cs │ │ └── ViewContextTests.cs │ ├── Resources.resx │ ├── SessionStateTempDataProviderTest.cs │ ├── SkipStatusCodePagesAttributeTest.cs │ ├── StringHtmlContentTest.cs │ ├── TempDataDictionaryFactoryTest.cs │ ├── TempDataDictionaryTest.cs │ ├── TemplateRendererTest.cs │ ├── TestApplicationPart.cs │ ├── ViewComponentResultTest.cs │ ├── ViewComponentTests.cs │ ├── ViewComponents │ │ ├── ContentViewComponentResultTest.cs │ │ ├── DefaultViewComponentActivatorTests.cs │ │ ├── DefaultViewComponentDescriptorProviderTest.cs │ │ ├── DefaultViewComponentFactoryTest.cs │ │ ├── DefaultViewComponentHelperTest.cs │ │ ├── DefaultViewComponentSelectorTest.cs │ │ ├── HtmlContentViewComponentResultTest.cs │ │ ├── ViewComponentContextTest.cs │ │ ├── ViewComponentConventionsTest.cs │ │ ├── ViewComponentFeatureProviderTest.cs │ │ └── ViewViewComponentResultTest.cs │ ├── ViewDataDictionaryOfTModelTest.cs │ ├── ViewDataDictionaryTest.cs │ ├── ViewDataOfTTest.cs │ ├── ViewEngines │ │ └── CompositeViewEngineTest.cs │ ├── ViewExecutorTest.cs │ ├── ViewResultExecutorTest.cs │ └── ViewResultTest.cs ├── Microsoft.AspNetCore.Mvc.Views.TestCommon │ ├── HtmlContentUtilities.cs │ ├── HtmlGeneratorUtilities.cs │ ├── Microsoft.AspNetCore.Mvc.Views.TestCommon.csproj │ ├── TestDirectoryContent.cs │ ├── TestDirectoryFileInfo.cs │ ├── TestFileChangeToken.cs │ ├── TestFileInfo.cs │ ├── TestFileProvider.cs │ ├── TestRazorCompiledItem.cs │ └── TestViewBufferScope.cs ├── Mvc.Analyzers.Test │ ├── AttributesShouldNotBeAppliedToPageModelAnalyzerTest.cs │ ├── AvoidHtmlPartialAnalyzerTest.cs │ ├── CodeAnalysisExtensionsTest.cs │ ├── Infrastructure │ │ ├── MvcDiagnosticAnalyzerRunner.cs │ │ └── MvcTestSource.cs │ ├── Mvc.Analyzers.Test.csproj │ ├── TestFiles │ │ ├── AttributesShouldNotBeAppliedToPageModelAnalyzerTest │ │ │ ├── DiagnosticsAreReturned_IfAllowAnonymousIsAppliedToPageHandlerMethod.cs │ │ │ ├── DiagnosticsAreReturned_IfAttributeIsAppliedToBaseType.cs │ │ │ ├── DiagnosticsAreReturned_IfAuthorizeAttributeIsAppliedToPageHandlerMethod.cs │ │ │ ├── DiagnosticsAreReturned_IfFiltersAreAppliedToPageHandlerMethod.cs │ │ │ ├── DiagnosticsAreReturned_IfFiltersAreAppliedToPageHandlerMethodDerivingFromCustomModel.cs │ │ │ ├── DiagnosticsAreReturned_IfFiltersAreAppliedToPageHandlerMethodForTypeWithPageModelAttribute.cs │ │ │ ├── DiagnosticsAreReturned_IfRouteAttribute_IsAppliedToPageModel.cs │ │ │ ├── DiagnosticsAreReturned_IfRouteAttributesAreAppliedToPageHandlerMethod.cs │ │ │ ├── NoDiagnosticsAreReturned_ForControllerActions.cs │ │ │ ├── NoDiagnosticsAreReturned_ForControllerBaseActions.cs │ │ │ ├── NoDiagnosticsAreReturned_ForNonHandlerMethodsWithAttributes.cs │ │ │ ├── NoDiagnosticsAreReturned_ForPageHandlersWithNonFilterAttributes.cs │ │ │ ├── NoDiagnosticsAreReturned_IfAllowAnonymousIsAppliedToPageModel.cs │ │ │ ├── NoDiagnosticsAreReturned_IfAuthorizeAttributeIsAppliedToPageModel.cs │ │ │ └── NoDiagnosticsAreReturned_IfFiltersAreAppliedToPageModel.cs │ │ ├── AvoidHtmlPartialAnalyzerTest │ │ │ ├── DiagnosticsAreReturned_ForUseOfHtmlPartial.cs │ │ │ ├── DiagnosticsAreReturned_ForUseOfHtmlPartial_InSections.cs │ │ │ ├── DiagnosticsAreReturned_ForUseOfHtmlPartial_WithAdditionalParameters.cs │ │ │ ├── DiagnosticsAreReturned_ForUseOfRenderPartial.cs │ │ │ ├── DiagnosticsAreReturned_ForUseOfRenderPartial_InSections.cs │ │ │ ├── DiagnosticsAreReturned_ForUseOfRenderPartial_WithAdditionalParameters.cs │ │ │ ├── NoDiagnosticsAreReturned_ForNonUseOfHtmlPartial.cs │ │ │ ├── NoDiagnosticsAreReturned_ForUseOfHtmlPartialAsync.cs │ │ │ └── NoDiagnosticsAreReturned_ForUseOfRenderPartialAsync.cs │ │ ├── CodeAnalysisExtensionsTest │ │ │ ├── GetAttributes_BaseTypeWithAttributes.cs │ │ │ ├── GetAttributes_OnMethodWithoutAttributes.cs │ │ │ ├── GetAttributes_OnTypeWithAttributes.cs │ │ │ ├── GetAttributes_OnTypeWithoutAttributes.cs │ │ │ ├── GetAttributes_WithMethodOverridding.cs │ │ │ ├── GetAttributes_WithNewMethod.cs │ │ │ ├── GetAttributes_WithoutMethodOverriding.cs │ │ │ ├── HasAttribute_ReturnsFalseIfSymbolDoesNotHaveAttribute.cs │ │ │ ├── HasAttribute_ReturnsTrueForAttributesOnMethods.cs │ │ │ ├── HasAttribute_ReturnsTrueForAttributesOnOverriddenMethods.cs │ │ │ ├── HasAttribute_ReturnsTrueForAttributesOnOverridenProperties.cs │ │ │ ├── HasAttribute_ReturnsTrueForAttributesOnProperties.cs │ │ │ ├── HasAttribute_ReturnsTrueForInterfaceContractOnAttribute.cs │ │ │ ├── HasAttribute_ReturnsTrueIfBaseTypeHasAttribute.cs │ │ │ ├── HasAttribute_ReturnsTrueIfTypeHasAttribute.cs │ │ │ ├── IsAssignable_ReturnsFalseForDifferentTypes.cs │ │ │ ├── IsAssignable_ReturnsTrueIfAncestorTypeImplementsInterface.cs │ │ │ ├── IsAssignable_ReturnsTrueIfTypeImplementsInterface.cs │ │ │ ├── IsAssignable_ReturnsTrueIfTypeIsBaseClass.cs │ │ │ └── IsAssignable_ReturnsTrueIfTypesAreExact.cs │ │ └── TopLevelParameterNameAnalyzerTest │ │ │ ├── DiagnosticsAreReturned_ForControllerActionsWithParametersThatMatchProperties.cs │ │ │ ├── DiagnosticsAreReturned_ForModelBoundParameters.cs │ │ │ ├── DiagnosticsAreReturned_IfModelNameProviderIsUsedToModifyParameterName.cs │ │ │ ├── GetNameTests.cs │ │ │ ├── IsProblematicParameter_IgnoresFields.cs │ │ │ ├── IsProblematicParameter_IgnoresMethods.cs │ │ │ ├── IsProblematicParameter_IgnoresNonPublicProperties.cs │ │ │ ├── IsProblematicParameter_IgnoresStaticProperties.cs │ │ │ ├── IsProblematicParameter_ReturnsFalse_ForFromBodyParameter.cs │ │ │ ├── IsProblematicParameter_ReturnsFalse_ForParametersWithCustomModelBinder.cs │ │ │ ├── IsProblematicParameter_ReturnsFalse_IfBindingSourceAttributeIsUsedToRenameParameter.cs │ │ │ ├── IsProblematicParameter_ReturnsFalse_IfBindingSourceAttributeIsUsedToRenameProperty.cs │ │ │ ├── IsProblematicParameter_ReturnsTrue_IfModelBinderAttributeIsUsedToRenameParameter.cs │ │ │ ├── IsProblematicParameter_ReturnsTrue_IfParameterNameIsTheSameAsModelProperty.cs │ │ │ ├── IsProblematicParameter_ReturnsTrue_IfParameterNameWithBinderAttributeIsTheSameNameAsModelProperty.cs │ │ │ ├── IsProblematicParameter_ReturnsTrue_IfPropertyWithModelBindingAttributeHasSameNameAsParameter.cs │ │ │ ├── NoDiagnosticsAreReturnedForApiControllers.cs │ │ │ ├── NoDiagnosticsAreReturnedForNonActions.cs │ │ │ ├── NoDiagnosticsAreReturnedIfParameterIsRenamedUsingBindingAttribute.cs │ │ │ └── SpecifiesModelTypeTests.cs │ ├── TopLevelParameterNameAnalyzerTest.cs │ └── xunit.runner.json ├── Mvc.Api.Analyzers.Test │ ├── ActualApiResponseMetadataFactoryTest.cs │ ├── AddResponseTypeAttributeCodeFixProviderIntegrationTest.cs │ ├── ApiActionsDoNotRequireExplicitModelValidationCheckAnalyzerIntegrationTest.cs │ ├── ApiActionsDoNotRequireExplicitModelValidationCheckCodeFixProviderTest.cs │ ├── ApiControllerFactsTest.cs │ ├── ApiConventionAnalyzerIntegrationTest.cs │ ├── DeclaredApiResponseMetadataTest.cs │ ├── Mvc.Api.Analyzers.Test.csproj │ ├── MvcFactsTest.cs │ ├── SymbolApiConventionMatcherTest.cs │ ├── SymbolApiResponseMetadataProviderTest.cs │ └── TestFiles │ │ ├── ActualApiResponseMetadataFactoryTest │ │ ├── GetDefaultStatusCodeTest.cs │ │ ├── InspectReturnExpressionTests.cs │ │ └── TryGetActualResponseMetadataTests.cs │ │ ├── AddResponseTypeAttributeCodeFixProviderIntegrationTest │ │ ├── CodeFixAddsFullyQualifiedProducesResponseType.Input.cs │ │ ├── CodeFixAddsFullyQualifiedProducesResponseType.Output.cs │ │ ├── CodeFixAddsMissingStatusCodes.Input.cs │ │ ├── CodeFixAddsMissingStatusCodes.Output.cs │ │ ├── CodeFixAddsMissingStatusCodesAndTypes.Input.cs │ │ ├── CodeFixAddsMissingStatusCodesAndTypes.Output.cs │ │ ├── CodeFixAddsNumericLiteralForNonExistingStatusCodeConstants.Input.cs │ │ ├── CodeFixAddsNumericLiteralForNonExistingStatusCodeConstants.Output.cs │ │ ├── CodeFixAddsResponseTypeWhenDifferentFromErrorType.Input.cs │ │ ├── CodeFixAddsResponseTypeWhenDifferentFromErrorType.Output.cs │ │ ├── CodeFixAddsStatusCodes.Input.cs │ │ ├── CodeFixAddsStatusCodes.Output.cs │ │ ├── CodeFixAddsStatusCodesFromConstructorParameters.Input.cs │ │ ├── CodeFixAddsStatusCodesFromConstructorParameters.Output.cs │ │ ├── CodeFixAddsStatusCodesFromMethodParameters.Input.cs │ │ ├── CodeFixAddsStatusCodesFromMethodParameters.Output.cs │ │ ├── CodeFixAddsStatusCodesFromObjectInitializer.Input.cs │ │ ├── CodeFixAddsStatusCodesFromObjectInitializer.Output.cs │ │ ├── CodeFixAddsSuccessStatusCode.Input.cs │ │ ├── CodeFixAddsSuccessStatusCode.Output.cs │ │ ├── CodeFixWithConventionAddsMissingStatusCodes.Input.cs │ │ ├── CodeFixWithConventionAddsMissingStatusCodes.Output.cs │ │ ├── CodeFixWithConventionMethodAddsMissingStatusCodes.Input.cs │ │ └── CodeFixWithConventionMethodAddsMissingStatusCodes.Output.cs │ │ ├── ApiActionsDoNotRequireExplicitModelValidationCheckAnalyzerIntegrationTest │ │ ├── DiagnosticsAreReturned_ForApiActionsWithModelStateChecks.cs │ │ ├── DiagnosticsAreReturned_ForApiActionsWithModelStateChecksUsingEquality.cs │ │ ├── DiagnosticsAreReturned_ForApiActionsWithModelStateChecksWithoutBracing.cs │ │ ├── NoDiagnosticsAreReturned_ForApiActionsCheckingAdditionalConditions.cs │ │ ├── NoDiagnosticsAreReturned_ForApiActionsReturning400FromNonModelStateIsValidBlocks.cs │ │ ├── NoDiagnosticsAreReturned_ForApiActionsReturningNot400FromNonModelStateIsValidBlock.cs │ │ ├── NoDiagnosticsAreReturned_ForApiActionsWithoutModelStateChecks.cs │ │ ├── NoDiagnosticsAreReturned_ForNonApiController.cs │ │ └── NoDiagnosticsAreReturned_ForRazorPageModels.cs │ │ ├── ApiActionsDoNotRequireExplicitModelValidationCheckCodeFixProviderTest │ │ ├── CodeFixRemovesIfBlockWithoutBraces.Input.cs │ │ ├── CodeFixRemovesIfBlockWithoutBraces.Output.cs │ │ ├── CodeFixRemovesModelStateIsInvalidBlockWithEqualityCheck.Input.cs │ │ ├── CodeFixRemovesModelStateIsInvalidBlockWithEqualityCheck.Output.cs │ │ ├── CodeFixRemovesModelStateIsInvalidBlockWithIfNotCheck.Input.cs │ │ └── CodeFixRemovesModelStateIsInvalidBlockWithIfNotCheck.Output.cs │ │ ├── ApiControllerFactsTest │ │ ├── IsApiControllerAction_ReturnsTrue_IfAttributeIsDeclaredOnAssembly.cs │ │ └── TestFile.cs │ │ ├── ApiConventionAnalyzerIntegrationTest │ │ ├── DiagnosticsAreReturned_ForActionResultOfTReturningMethodWithoutAnyAttributes.cs │ │ ├── DiagnosticsAreReturned_ForActionResultOfTReturningMethodWithoutSomeAttributes.cs │ │ ├── DiagnosticsAreReturned_ForControllerWithCustomConvention.cs │ │ ├── DiagnosticsAreReturned_IfAsyncMethodReturningValueTaskWithProducesResponseTypeAttribute_ReturnsUndocumentedStatusCode.cs │ │ ├── DiagnosticsAreReturned_IfAsyncMethodWithProducesResponseTypeAttribute_ReturnsUndocumentedStatusCode.cs │ │ ├── DiagnosticsAreReturned_IfMethodWithApiConventionMethod_ReturnsUndocumentedStatusCode.cs │ │ ├── DiagnosticsAreReturned_IfMethodWithAttributeAsynchronouslyReturnsValue_WithoutDocumentation.cs │ │ ├── DiagnosticsAreReturned_IfMethodWithAttributeReturnsValue_WithoutDocumentation.cs │ │ ├── DiagnosticsAreReturned_IfMethodWithAttribute_ReturnsDerivedType.cs │ │ ├── DiagnosticsAreReturned_IfMethodWithConvention_DoesNotReturnDocumentedStatusCode.cs │ │ ├── DiagnosticsAreReturned_IfMethodWithConvention_ReturnsUndocumentedStatusCode.cs │ │ ├── DiagnosticsAreReturned_IfMethodWithProducesResponseTypeAttribute_DoesNotDocumentSuccessStatusCode.cs │ │ ├── DiagnosticsAreReturned_IfMethodWithProducesResponseTypeAttribute_DoesNotReturnDocumentedStatusCode.cs │ │ ├── DiagnosticsAreReturned_IfMethodWithProducesResponseTypeAttribute_ReturnsUndocumentedStatusCode.cs │ │ ├── NoDiagnosticsAreReturned_ForApiController_IfStatusCodesCannotBeInferred.cs │ │ ├── NoDiagnosticsAreReturned_ForApiController_WithAllDocumentedStatusCodes.cs │ │ ├── NoDiagnosticsAreReturned_ForNonApiController.cs │ │ ├── NoDiagnosticsAreReturned_ForOkResultReturningAction.cs │ │ ├── NoDiagnosticsAreReturned_ForRazorPageModels.cs │ │ ├── NoDiagnosticsAreReturned_ForReturnStatementsInLambdas.cs │ │ └── NoDiagnosticsAreReturned_ForReturnStatementsInLocalFunctions.cs │ │ ├── MvcFactsTest │ │ ├── IsControllerActionTests.cs │ │ └── IsControllerTests.cs │ │ ├── SymbolApiConventionMatcherTest │ │ └── SymbolApiConventionMatcherTestFile.cs │ │ └── SymbolApiResponseMetadataProviderTest │ │ ├── GetErrorResponseType_ReturnsProblemDetails_IfNoAttributeIsDiscovered.cs │ │ ├── GetErrorResponseType_ReturnsTypeDefinedAtAction.cs │ │ ├── GetErrorResponseType_ReturnsTypeDefinedAtAssembly.cs │ │ ├── GetErrorResponseType_ReturnsTypeDefinedAtController.cs │ │ └── GetResponseMetadataTests.cs ├── MvcTests.ruleset └── WebSites │ ├── ApiExplorerWebSite │ ├── ActionDescriptorChangeProvider.cs │ ├── ApiExplorerDataFilter.cs │ ├── ApiExplorerInboundOutboundConvention.cs │ ├── ApiExplorerRouteChangeConvention.cs │ ├── ApiExplorerVisibilityDisabledConvention.cs │ ├── ApiExplorerVisibilityEnabledConvention.cs │ ├── ApiExplorerWebSite.csproj │ ├── Controllers │ │ ├── ApiExplorerApiController.cs │ │ ├── ApiExplorerHttpMethodController.cs │ │ ├── ApiExplorerInboundOutboundController.cs │ │ ├── ApiExplorerNameSetByConventionController.cs │ │ ├── ApiExplorerNameSetExplicitlyController.cs │ │ ├── ApiExplorerParametersController.cs │ │ ├── ApiExplorerReloadableController.cs │ │ ├── ApiExplorerResponseContentTypeController.cs │ │ ├── ApiExplorerResponseContentTypeOverrideOnActionController.cs │ │ ├── ApiExplorerResponseTypeOverrideOnActionController.cs │ │ ├── ApiExplorerResponseTypeWithApiConventionController.cs │ │ ├── ApiExplorerResponseTypeWithAttributeController.cs │ │ ├── ApiExplorerResponseTypeWithoutAttributeController.cs │ │ ├── ApiExplorerRouteAndPathParametersInformationController.cs │ │ ├── ApiExplorerVisibilityDisabledByConventionController.cs │ │ ├── ApiExplorerVisibilityEnabledByConventionController.cs │ │ └── ApiExplorerVisibilitySetExplicitlyController.cs │ ├── Models │ │ ├── Customer.cs │ │ ├── CustomerCommentsDTO.cs │ │ ├── OrderDTO.cs │ │ ├── OrderDetailsDTO.cs │ │ └── Product.cs │ ├── PassThruAttribute.cs │ ├── ReloadAttribute.cs │ ├── Startup.cs │ ├── WellKnownChangeToken.cs │ └── readme.md │ ├── ApplicationModelWebSite │ ├── ApplicationModelWebSite.csproj │ ├── Areas │ │ ├── Manage │ │ │ └── Views │ │ │ │ └── MultipleAreas │ │ │ │ └── Index.cshtml │ │ ├── Products │ │ │ └── Views │ │ │ │ └── MultipleAreas │ │ │ │ └── Index.cshtml │ │ └── Services │ │ │ └── Views │ │ │ └── MultipleAreas │ │ │ └── Index.cshtml │ ├── Controllers │ │ ├── ActionModelController.cs │ │ ├── ApplicationModelController.cs │ │ ├── ControllerModelController.cs │ │ ├── HomeController.cs │ │ ├── LicenseController.cs │ │ ├── MultipleAreasController.cs │ │ └── ParameterModelController.cs │ ├── Conventions │ │ ├── ActionDescriptionAttribute.cs │ │ ├── ApplicationDescription.cs │ │ ├── CloneActionAttribute.cs │ │ ├── CloneActionConvention.cs │ │ ├── ControllerDescriptionAttribute.cs │ │ ├── ControllerLicenseConvention.cs │ │ ├── FromHeaderConvention.cs │ │ ├── MultipleAreasAttribute.cs │ │ └── MultipleAreasControllerConvention.cs │ ├── Startup.cs │ ├── Views │ │ └── ActionModel │ │ │ ├── Help.cshtml │ │ │ └── MoreHelp.cshtml │ └── readme.md │ ├── BasicWebSite │ ├── ActionDescriptorCreationCounter.cs │ ├── Areas │ │ ├── Area1 │ │ │ ├── Controllers │ │ │ │ ├── RemoteAttribute_HomeController.cs │ │ │ │ └── RemoteAttribute_VerifyController.cs │ │ │ └── Views │ │ │ │ └── RemoteAttribute_Home │ │ │ │ ├── Create.cshtml │ │ │ │ ├── Details.cshtml │ │ │ │ └── _Layout.cshtml │ │ └── Area2 │ │ │ └── Controllers │ │ │ └── RemoteAttribute_VerifyController.cs │ ├── BasicAuthenticationHandler.cs │ ├── BasicWebSite.csproj │ ├── Components │ │ ├── PassThroughViewComponent.cs │ │ └── ViewDataViewComponent.cs │ ├── ConfigureAuthPolicies.cs │ ├── ContactsRepository.cs │ ├── Controllers │ │ ├── ActionConstraints │ │ │ ├── ConsumesAttribute_MediaTypeSuffix.cs │ │ │ ├── ConsumesAttribute_NoFallBackActionController.cs │ │ │ ├── ConsumesAttribute_OveridesBaseController.cs │ │ │ ├── ConsumesAttribute_OveridesController.cs │ │ │ ├── ConsumesAttribute_PassThroughController.cs │ │ │ └── ConsumesAttribute_WithFallbackActionController.cs │ │ ├── ActionResultOfTController.cs │ │ ├── AntiforgeryController.cs │ │ ├── AsyncActionsController.cs │ │ ├── AuthorizeUserController.cs │ │ ├── BindPropertiesController.cs │ │ ├── BindPropertiesSupportsGetController.cs │ │ ├── ContactApiController.cs │ │ ├── ContentNegotiation │ │ │ ├── ContentNegotiationController.cs │ │ │ ├── FallbackOnTypeBasedMatchController.cs │ │ │ ├── FormatFilterController.cs │ │ │ ├── InvalidContentTypeController.cs │ │ │ ├── NoContentController.cs │ │ │ ├── NoContentDoNotTreatNullValueAsNoContentController.cs │ │ │ ├── NoProducesContentOnClassController.cs │ │ │ ├── NormalController.cs │ │ │ ├── ProducesContentBaseController.cs │ │ │ ├── ProducesContentOnClassController.cs │ │ │ ├── ProducesJsonController.cs │ │ │ ├── ProducesWithMediaTypeParametersController.cs │ │ │ ├── ProducesWithMediaTypeSuffixesController.cs │ │ │ └── TextPlainController.cs │ │ ├── DefaultValuesController.cs │ │ ├── FiltersController.cs │ │ ├── HomeController.cs │ │ ├── JsonResultController.cs │ │ ├── LinkGeneration │ │ │ ├── LinksController.cs │ │ │ ├── OrdersController.cs │ │ │ └── ProductsController.cs │ │ ├── MonitorController.cs │ │ ├── PageRouteController.cs │ │ ├── PassThroughController.cs │ │ ├── RemoteAttribute_HomeController.cs │ │ ├── RemoteAttribute_VerifyController.cs │ │ ├── RequestFormLimitsController.cs │ │ ├── RequestScopedServiceController.cs │ │ ├── RequestSizeLimitController.cs │ │ ├── RoutingController.cs │ │ ├── SqlDataController.cs │ │ ├── TempDataController.cs │ │ ├── TempDataPropertyController.cs │ │ ├── TestingController.cs │ │ ├── UsersController.cs │ │ └── ViewDataPropertyController.cs │ ├── Conventions │ │ └── ApplicationDescription.cs │ ├── Filters │ │ ├── RedirectAntiforgeryValidationFailedResultFilter.cs │ │ ├── RequestIdService.cs │ │ ├── ServiceActionFilter.cs │ │ ├── TestExceptionFilter.cs │ │ ├── TraceOutputResultFilter.cs │ │ ├── TraceResourceFilter.cs │ │ └── UnprocessableResultFilter.cs │ ├── Formatters │ │ ├── CustomFormatter.cs │ │ ├── PlainTextFormatter.cs │ │ ├── VCardFormatter_V3.cs │ │ └── VCardFormatter_V4.cs │ ├── LocalizationPipeline.cs │ ├── ManagerHandler.cs │ ├── Models │ │ ├── Contact.cs │ │ ├── GenderType.cs │ │ ├── LoginViewModel.cs │ │ ├── Person.cs │ │ ├── Product.cs │ │ ├── Product_Json.cs │ │ ├── Product_Xml.cs │ │ ├── Product_text.cs │ │ ├── RemoteAttributeUser.cs │ │ └── User.cs │ ├── Operations.cs │ ├── Program.cs │ ├── RequestIdMiddleware.cs │ ├── RequestIdViewComponent.cs │ ├── RequestScopedActionConstraint.cs │ ├── RequestScopedFilter.cs │ ├── RequestScopedTagHelper.cs │ ├── Startup.cs │ ├── StartupRequestLimitSize.cs │ ├── StartupWithCookieTempDataProviderAndCookieConsent.cs │ ├── StartupWithCustomInvalidModelStateFactory.cs │ ├── StartupWithEndpointRouting.cs │ ├── StartupWithSessionTempDataProvider.cs │ ├── StoreIntoTempDataActionResult.cs │ ├── Views │ │ ├── Antiforgery │ │ │ ├── AntiforgeryTokenAndResponseCaching.cshtml │ │ │ ├── FlushAsyncLogin.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── Login.cshtml │ │ │ ├── _FlushAsyncLayout.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _LoginPartial.cshtml │ │ ├── Home │ │ │ ├── ActionLinkView.cshtml │ │ │ ├── CSharp7View.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── JsonHelperInView.cshtml │ │ │ ├── JsonHelperWithSettingsInView.cshtml │ │ │ ├── PlainView.cshtml │ │ │ └── ViewWithPrefixedAttributeValue.cshtml │ │ ├── Links │ │ │ ├── ActionLink_ActionOnOtherController.cshtml │ │ │ ├── ActionLink_ActionOnSameController.cshtml │ │ │ ├── ActionLink_HostNameFragmentAttributes.cshtml │ │ │ ├── ActionLink_SecurePage_ImplicitHostName.cshtml │ │ │ ├── RouteLink_HostNameFragmentAttributes.cshtml │ │ │ ├── RouteLink_RestLinkToOtherController.cshtml │ │ │ └── RouteLink_SecureApi_ImplicitHostName.cshtml │ │ ├── PageRoute │ │ │ ├── AttributeRouteView.cshtml │ │ │ └── ConventionalRouteView.cshtml │ │ ├── RemoteAttribute_Home │ │ │ ├── Create.cshtml │ │ │ └── _Layout.cshtml │ │ ├── RequestScopedService │ │ │ ├── TagHelper.cshtml │ │ │ ├── View.cshtml │ │ │ └── ViewComponent.cshtml │ │ ├── Shared │ │ │ ├── Components │ │ │ │ ├── PassThrough │ │ │ │ │ └── Default.cshtml │ │ │ │ └── ViewData │ │ │ │ │ └── Default.cshtml │ │ │ ├── Error.cshtml │ │ │ └── _Layout.cshtml │ │ ├── TempData │ │ │ ├── DisplayTempData.cshtml │ │ │ └── Index.cshtml │ │ ├── TempDataProperty │ │ │ └── DetailsView.cshtml │ │ └── ViewDataProperty │ │ │ ├── ViewDataInViewComponent.cshtml │ │ │ ├── ViewDataPropertyToView.cshtml │ │ │ └── _Layout.cshtml │ ├── VndErrorAttribute.cs │ ├── _bower.json │ ├── _bower.readme │ ├── _gruntfile.js │ ├── _package.json │ ├── readme.md │ └── wwwroot │ │ └── lib │ │ └── jquery-validation-unobtrusive │ │ └── jquery.validate.unobtrusive.min.js │ ├── Common │ └── TestResponseGenerator.cs │ ├── ControllersFromServicesClassLibrary │ ├── ClientUIStubController.cs │ ├── ControllerWithConstructorInjection.cs │ ├── ControllersFromServicesClassLibrary.csproj │ ├── EmployeeRecords.cs │ ├── GenericController.cs │ ├── Inventory.cs │ ├── NestedControllerOwner.cs │ ├── QueryValueService.cs │ ├── ResourcesController.cs │ └── TimeScheduleController.cs │ ├── ControllersFromServicesWebSite │ ├── AnotherController.cs │ ├── Components │ │ └── ComponentFromServicesViewComponent.cs │ ├── ControllersFromServicesWebSite.csproj │ ├── NotInServicesController.cs │ ├── Startup.cs │ ├── TagHelpers │ │ └── InServicesTagHelper.cs │ ├── ValueService.cs │ ├── ViewData.cshtml │ ├── Views │ │ └── Another │ │ │ └── InServicesTagHelper.cshtml │ └── readme.md │ ├── CorsWebSite │ ├── Controllers │ │ ├── BlogController.cs │ │ ├── CustomerController.cs │ │ └── StoreController.cs │ ├── CorsWebSite.csproj │ ├── Filters │ │ └── AllRequestsBlockingAuthorizationFilter.cs │ ├── Program.cs │ ├── Startup.cs │ ├── StartupWith21Compat.cs │ └── readme.md │ ├── Directory.Build.props │ ├── ErrorPageMiddlewareWebSite │ ├── AggregateExceptionController.cs │ ├── ErrorPageMiddlewareController.cs │ ├── ErrorPageMiddlewareWebSite.csproj │ ├── README.md │ ├── Startup.cs │ └── Views │ │ ├── ErrorFromViewImports │ │ ├── Index.cshtml │ │ └── _ViewImports.cshtml │ │ └── ErrorPageMiddleware │ │ ├── CompilationFailure.cshtml │ │ ├── ParserError.cshtml │ │ └── RuntimeError.cshtml │ ├── FSharpWebSite │ ├── Controllers │ │ └── HomeController.fs │ ├── FSharpWebSite.fsproj │ ├── Program.fs │ ├── Startup.fs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── FilesWebSite │ ├── Controllers │ │ ├── DownloadFilesController.cs │ │ ├── EmbeddedFilesController.cs │ │ └── UploadFilesController.cs │ ├── EmbeddedResources │ │ └── Greetings.txt │ ├── FilesWebSite.csproj │ ├── Models │ │ ├── Product.cs │ │ └── User.cs │ ├── Startup.cs │ ├── readme.md │ └── sample.txt │ ├── FormatterWebSite │ ├── Controllers │ │ ├── DataContractSerializerController.cs │ │ ├── DoNotRespectBrowserAcceptHeaderController.cs │ │ ├── HomeController.cs │ │ ├── InputFormatterController.cs │ │ ├── JsonFormatterController.cs │ │ ├── JsonPatchController.cs │ │ ├── PolymorphicBindingController.cs │ │ ├── PolymorphicPropertyBindingController.cs │ │ ├── RespectBrowserAcceptHeaderController.cs │ │ ├── SerializableErrorController.cs │ │ ├── StreamController.cs │ │ ├── TestApiController.cs │ │ ├── TopLevelValidationController.cs │ │ ├── ValidationController.cs │ │ └── XmlSerializerController.cs │ ├── Filters │ │ └── ModelStateValidationFilterAttribute.cs │ ├── FormatterWebSite.csproj │ ├── IModelConverter.cs │ ├── Models │ │ ├── BaseModel.cs │ │ ├── BookModelWithNoValidation.cs │ │ ├── DerivedDummyClass.cs │ │ ├── DerivedModel.cs │ │ ├── Developer.cs │ │ ├── DummyClass.cs │ │ ├── Employee.cs │ │ ├── ErrorInfo.cs │ │ ├── IModel.cs │ │ ├── InfinitelyRecursiveModel.cs │ │ ├── Person.cs │ │ ├── Product.cs │ │ ├── Project.cs │ │ ├── RecursiveIdentifier.cs │ │ ├── Review.cs │ │ ├── SimpleTypePropertiesModel.cs │ │ ├── User.cs │ │ └── ValidationProviderAttributeModel.cs │ ├── PolymorphicBinder.cs │ ├── Program.cs │ ├── Startup.cs │ ├── StartupWithRespectBrowserAcceptHeader.cs │ ├── StringInputFormatter.cs │ ├── ValidateBodyParameterAttribute.cs │ └── readme.md │ ├── HtmlGenerationWebSite │ ├── Areas │ │ └── Customer │ │ │ ├── Controllers │ │ │ └── HtmlGeneration_CustomerController.cs │ │ │ └── Pages │ │ │ ├── PartialWithFallback.cshtml │ │ │ ├── PartialWithOptional.cshtml │ │ │ ├── _Fallback.cshtml │ │ │ └── _ViewImports.cshtml │ ├── Components │ │ ├── CheckViewData - LackModel.cs │ │ ├── CheckViewData.cs │ │ └── SplashViewComponent.cs │ ├── Controllers │ │ ├── Catalog_CacheTagHelperController.cs │ │ ├── CheckViewData.cs │ │ ├── HtmlGeneration_HomeController.cs │ │ ├── HtmlGeneration_OrderController.cs │ │ ├── HtmlGeneration_ProductController.cs │ │ └── HtmlGeneration_WeirdExpressions.cs │ ├── HtmlGenerationWebSite.csproj │ ├── ISignalTokenProviderService.cs │ ├── Models │ │ ├── AClass.cs │ │ ├── Customer.cs │ │ ├── DayOfWeek.cs │ │ ├── Employee.cs │ │ ├── Folder.cs │ │ ├── Gender.cs │ │ ├── Item.cs │ │ ├── Month.cs │ │ ├── Order.cs │ │ ├── PartialModel.cs │ │ ├── Person.cs │ │ ├── Product.cs │ │ ├── ProductRecommendations.cs │ │ ├── StatusMessageModel.cs │ │ ├── SuperTemplateModel.cs │ │ ├── SuperViewModel.cs │ │ ├── TemplateModel.cs │ │ ├── ValidationProviderAttributeModel.cs │ │ ├── ViewModel.cs │ │ ├── Warehouse.cs │ │ └── WeirdModel.cs │ ├── Pages │ │ ├── CacheTagHelper_VaryByCulture.cshtml │ │ └── _ViewImports.cshtml │ ├── ProductsService.cs │ ├── SignalTokenProviderService.cs │ ├── Startup.cs │ ├── StartupWith21CompatibilityBehavior.cs │ ├── StartupWithCultureReplace.cs │ ├── TestCacheTagHelper.cs │ ├── Views │ │ ├── Catalog_CacheTagHelper │ │ │ ├── ConfirmPayment.cshtml │ │ │ ├── Deals.cshtml │ │ │ ├── Details.cshtml │ │ │ ├── ListCategories.cshtml │ │ │ ├── PastPurchases.cshtml │ │ │ ├── ShoppingCart.cshtml │ │ │ ├── Splash.cshtml │ │ │ ├── _SplashPartial.cshtml │ │ │ └── _ViewImports.cshtml │ │ ├── CheckViewData │ │ │ ├── AtViewModel.cshtml │ │ │ ├── Components │ │ │ │ ├── CheckViewData │ │ │ │ │ └── Default.cshtml │ │ │ │ └── CheckViewData___LackModel │ │ │ │ │ └── Default.cshtml │ │ │ ├── DisplayTemplates │ │ │ │ ├── Int32 - LackModel.cshtml │ │ │ │ ├── Int32.cshtml │ │ │ │ ├── Int64 - LackModel.cshtml │ │ │ │ ├── Int64.cshtml │ │ │ │ ├── LackModel.cshtml │ │ │ │ ├── TemplateModel.cshtml │ │ │ │ └── ViewModel.cshtml │ │ │ ├── PartialForViewModel.cshtml │ │ │ └── ViewModel.cshtml │ │ ├── HtmlGeneration_Home │ │ │ ├── AttributesWithBooleanValues.cshtml │ │ │ ├── CreateWarehouse.cshtml │ │ │ ├── EditWarehouse.cshtml │ │ │ ├── EditorTemplates │ │ │ │ ├── Employee.cshtml │ │ │ │ ├── GenderUsingHtmlHelpers.cshtml │ │ │ │ └── GenderUsingTagHelpers.cshtml │ │ │ ├── EmployeeList.cshtml │ │ │ ├── Enum.cshtml │ │ │ ├── Environment.cshtml │ │ │ ├── Form.cshtml │ │ │ ├── Image.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── Input.cshtml │ │ │ ├── ItemUsingModelSpecificEditorTemplate.cshtml │ │ │ ├── ItemUsingSharedEditorTemplate.cshtml │ │ │ ├── Link.cshtml │ │ │ ├── Order.cshtml │ │ │ ├── OrderUsingHtmlHelpers.cshtml │ │ │ ├── PartialTagHelperWithoutModel.cshtml │ │ │ ├── Product.cshtml │ │ │ ├── ProductList.cshtml │ │ │ ├── ProductListUsingTagHelpers.cshtml │ │ │ ├── Script.cshtml │ │ │ ├── StatusMessage.cshtml │ │ │ ├── ValidationProviderAttribute.cshtml │ │ │ ├── Warehouse.cshtml │ │ │ ├── _EmployeePartial.cshtml │ │ │ ├── _ProductPartial.cshtml │ │ │ ├── _ProductRecommendations.cshtml │ │ │ └── _StatusMessagePartial.cshtml │ │ ├── HtmlGeneration_WeirdExpressions │ │ │ ├── GetWeirdWithHtmlHelpers.cshtml │ │ │ └── GetWeirdWithTagHelpers.cshtml │ │ └── Shared │ │ │ ├── Components │ │ │ └── Splash │ │ │ │ └── Default.cshtml │ │ │ ├── Customer.cshtml │ │ │ ├── DisplayTemplates │ │ │ └── DayOfWeek.cshtml │ │ │ ├── EditorTemplates │ │ │ ├── Common.cshtml │ │ │ └── String.cshtml │ │ │ └── _Partial.cshtml │ ├── appRoot.css │ ├── appRoot.js │ ├── readme.md │ └── wwwroot │ │ ├── images │ │ └── red.png │ │ └── styles │ │ ├── .gitattributes │ │ ├── site.css │ │ ├── site.js │ │ ├── siteIntegrity.css │ │ ├── siteIntegrity.js │ │ └── sub │ │ ├── site2.css │ │ ├── site2.js │ │ ├── site3.css │ │ ├── site3.js │ │ ├── site3.min.css │ │ ├── siteIntegrity2.js │ │ └── siteIntegrity3.js │ ├── RazorBuildWebSite.PrecompiledViews │ ├── Pages │ │ └── Precompilation │ │ │ ├── Page.cs │ │ │ └── Page_Model.cs │ ├── RazorBuildWebSite.PrecompiledViews.csproj │ └── Views │ │ ├── Common │ │ └── CommonView.cs │ │ └── Precompilation │ │ └── View.cs │ ├── RazorBuildWebSite.Views │ ├── AssemblyInfo.cs │ ├── Pages │ │ └── Rzc │ │ │ ├── Page.cs │ │ │ └── Page_Model.cs │ ├── RazorBuildWebSite.Views.csproj │ └── Views │ │ ├── Common │ │ └── CommonView.cs │ │ └── Rzc │ │ └── View.cs │ ├── RazorBuildWebSite │ ├── Controllers │ │ ├── CommonController.cs │ │ ├── PrecompilationController.cs │ │ └── RzcController.cs │ ├── Pages │ │ ├── Precompilation │ │ │ └── Page.cshtml │ │ ├── Rzc │ │ │ └── Page.cshtml │ │ └── _ViewImports.cshtml │ ├── RazorBuildWebSite.csproj │ ├── Startup.cs │ ├── Views │ │ ├── Precompilation │ │ │ └── View.cshtml │ │ ├── Rzc │ │ │ └── View.cshtml │ │ └── _ViewImports.cshtml │ └── readme.md │ ├── RazorPagesClassLibrary │ ├── ClassLibraryStartup.cs │ ├── Pages │ │ └── ClassLibraryPages │ │ │ ├── Overriden.cshtml │ │ │ └── Served.cshtml │ └── RazorPagesClassLibrary.csproj │ ├── RazorPagesWebSite │ ├── Areas │ │ ├── Accounts │ │ │ ├── Controllers │ │ │ │ └── HomeController.cs │ │ │ ├── Pages │ │ │ │ ├── About.cshtml │ │ │ │ ├── Manage │ │ │ │ │ ├── RenderPartials.cshtml │ │ │ │ │ └── _PartialInManage.cshtml │ │ │ │ ├── PageWithLinks.cshtml │ │ │ │ ├── PageWithRouteTemplate.cshtml │ │ │ │ ├── RelativeLinks │ │ │ │ │ └── Index.cshtml │ │ │ │ ├── RequiresAuth │ │ │ │ │ ├── AllowAnonymous.cshtml │ │ │ │ │ └── Index.cshtml │ │ │ │ └── _PartialInAreaPagesRoot.cshtml │ │ │ ├── Views │ │ │ │ ├── Home │ │ │ │ │ └── Index.cshtml │ │ │ │ └── Shared │ │ │ │ │ └── _PartialInAreasSharedViews.cshtml │ │ │ └── _ViewImports.cshtml │ │ └── Products │ │ │ └── Pages │ │ │ └── List.cshtml │ ├── Components │ │ └── ViewDataViewComponent.cs │ ├── Controllers │ │ └── RedirectController.cs │ ├── Conventions │ │ └── CustomModelTypeConvention.cs │ ├── CustomActionResult.cs │ ├── DefaultNamespace.cshtml │ ├── HandlerTestPage.cshtml │ ├── HelloWorld.cshtml │ ├── HelloWorldWithAuth.cshtml │ ├── HelloWorldWithHandler.cshtml │ ├── HelloWorldWithOptionsHandler.cshtml │ ├── HelloWorldWithPageModelAttributeModel.cs │ ├── HelloWorldWithPageModelAttributeModel.cshtml │ ├── HelloWorldWithPageModelHandler.cs │ ├── HelloWorldWithPageModelHandler.cshtml │ ├── HelloWorldWithRoute.cshtml │ ├── InjectedPageProperties.cshtml │ ├── ModelAsFilter.cs │ ├── ModelAsFilter.cshtml │ ├── ModelHandlerTestModel.cs │ ├── ModelHandlerTestPage.cshtml │ ├── ModelWithAuthFilter.cs │ ├── ModelWithAuthFilter.cshtml │ ├── ModelWithPageFilter.cs │ ├── ModelWithPageFilter.cshtml │ ├── ModelWithResponseCache.cs │ ├── ModelWithResponseCache.cshtml │ ├── Models │ │ ├── IUserModel.cs │ │ └── UserModel.cs │ ├── NoPage.cshtml │ ├── OnGetView.cshtml │ ├── PageWithoutContent.cshtml │ ├── Pages │ │ ├── Admin │ │ │ ├── Edit.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── Login.cshtml │ │ │ └── RouteTemplate.cshtml │ │ ├── Antiforgery │ │ │ ├── AntiforgeryDefault.cshtml │ │ │ ├── AntiforgeryDefault.cshtml.cs │ │ │ ├── IgnoreAntiforgery.cshtml │ │ │ ├── IgnoreAntiforgery.cshtml.cs │ │ │ └── _ViewImports.cshtml │ │ ├── ClassLibraryPages │ │ │ └── Overriden.cshtml │ │ ├── Conventions │ │ │ ├── Auth.cshtml │ │ │ └── AuthFolder │ │ │ │ ├── AnonymousModel.cs │ │ │ │ ├── AnonymousViaModel.cshtml │ │ │ │ └── Index.cshtml │ │ ├── CustomBaseType │ │ │ ├── CustomPageBase.cs │ │ │ ├── Page.cshtml │ │ │ ├── PageWithModel.cs │ │ │ ├── PageWithModel.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── CustomModelTypeModel.cshtml │ │ ├── CustomModelTypeModel.cshtml.cs │ │ ├── CustomPrefix │ │ │ └── Custom.cshtml │ │ ├── FileFromShared │ │ ├── HandlerWithParameter.cshtml │ │ ├── HandlerWithParameter.cshtml.cs │ │ ├── Index.cshtml │ │ ├── Localized │ │ │ ├── Page.cshtml │ │ │ ├── Page.fr-FR.resx │ │ │ ├── PageWithModel.cs │ │ │ ├── PageWithModel.cshtml │ │ │ └── PageWithModel.fr-FR.resx │ │ ├── Namespace │ │ │ ├── Nested │ │ │ │ ├── Folder │ │ │ │ │ └── Index.cshtml │ │ │ │ └── Override │ │ │ │ │ └── Index.cshtml │ │ │ └── _ViewImports.cshtml │ │ ├── NotTheRoot.cshtml │ │ ├── PropertyBinding │ │ │ ├── BindFormFile.cshtml │ │ │ ├── BindFormFile.cshtml.cs │ │ │ ├── BindPropertiesOnModel.cs │ │ │ ├── BindPropertiesOnModel.cshtml │ │ │ ├── BindPropertiesWithSupportsGetOnModel.cs │ │ │ ├── BindPropertiesWithSupportsGetOnModel.cshtml │ │ │ ├── BindPropertyWithGet.cshtml │ │ │ ├── PageModelWithPropertyAndArgumentBinding.cs │ │ │ ├── PageModelWithPropertyBinding.cs │ │ │ ├── PageModelWithPropertyBinding.cshtml │ │ │ ├── PagePropertyBinding.cshtml │ │ │ ├── PageWithPropertyAndArgumentBinding.cshtml │ │ │ ├── PolymorphicBinding.cs │ │ │ ├── PolymorphicBinding.cshtml │ │ │ └── _ViewImports.cshtml │ │ ├── Redirects │ │ │ ├── Index.cshtml │ │ │ ├── Redirect.cshtml │ │ │ ├── RedirectFromHandler.cshtml │ │ │ ├── RedirectFromModel.cs │ │ │ ├── RedirectFromModel.cshtml │ │ │ ├── RedirectFromPage.cshtml │ │ │ ├── RedirectToSelf.cshtml │ │ │ ├── RedirectToSibling.cshtml │ │ │ └── SubDir │ │ │ │ └── SubDirPage.cshtml │ │ ├── Routes │ │ │ ├── RouteUsingDefaultName.cshtml │ │ │ ├── Sibling.cshtml │ │ │ └── _ViewImports.cshtml │ │ ├── SearchInPages.cshtml │ │ ├── Section │ │ │ ├── Index.cshtml │ │ │ └── _Layout.cshtml │ │ ├── Shared │ │ │ ├── Components │ │ │ │ └── ViewData │ │ │ │ │ └── Default.cshtml │ │ │ ├── _CustomBaseTypeLayout.cshtml │ │ │ └── _FileInShared.cshtml │ │ ├── ShortCircuitPageAtAuthFilter.cshtml │ │ ├── ShortCircuitPageAtAuthFilter.cshtml.cs │ │ ├── ShortCircuitPageAtPageFilter.cshtml │ │ ├── ShortCircuitPageAtPageFilter.cshtml.cs │ │ ├── TagHelper │ │ │ ├── CrossPost.cshtml │ │ │ ├── FormAction.cshtml │ │ │ ├── PathTraversalLinks.cshtml │ │ │ ├── PostWithHandler.cshtml │ │ │ ├── SelfPost.cshtml │ │ │ ├── SiblingLinks.cshtml │ │ │ ├── SubDir │ │ │ │ └── SubDirPage.cshtml │ │ │ ├── SubDirectoryLinks.cshtml │ │ │ └── _ViewImports.cshtml │ │ ├── TryUpdateModel.cshtml │ │ ├── TryUpdateModelPageModel.cs │ │ ├── TryUpdateModelPageModel.cshtml │ │ ├── TryValidateModel.cshtml │ │ ├── TryValidateModelPageModel.cs │ │ ├── TryValidateModelPageModel.cshtml │ │ ├── Validation │ │ │ ├── PageHandlerWithValidation.cshtml │ │ │ ├── PageWithValidation.cs │ │ │ ├── PageWithValidation.cshtml │ │ │ └── _ViewImports.cshtml │ │ ├── ViewData │ │ │ ├── ViewDataInPage.cs │ │ │ ├── ViewDataInPage.cshtml │ │ │ ├── ViewDataInPageWithoutModel.cshtml │ │ │ ├── ViewDataSetInViewStart │ │ │ │ ├── Index.cs │ │ │ │ ├── Index.cshtml │ │ │ │ ├── _Layout.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ │ ├── ViewDataToViewComponentPage.cs │ │ │ ├── ViewDataToViewComponentPage.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _ViewImports.cshtml │ │ ├── ViewDataAvailableAfterHandlerExecuted.cshtml │ │ ├── ViewDataAvailableAfterHandlerExecuted.cshtml.cs │ │ ├── ViewSearch │ │ │ ├── Index.cshtml │ │ │ └── _Sibling.cshtml │ │ ├── WithViewImport │ │ │ ├── Index.cshtml │ │ │ └── _ViewImports.cshtml │ │ ├── WithViewStart │ │ │ ├── Index.cshtml │ │ │ ├── ViewStartAtRoot.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── _Parent.cshtml │ │ └── _ViewImports.cshtml │ ├── PathSet.cshtml │ ├── PolymorphicModelBinder.cs │ ├── Program.cs │ ├── RazorPagesWebSite.csproj │ ├── RedirectToController.cshtml │ ├── RenderPartialWithModel.cs │ ├── RenderPartialWithModel.cshtml │ ├── RenderPartialWithoutModel.cshtml │ ├── RouteData.cshtml │ ├── Services │ │ └── CustomService.cs │ ├── Show.cshtml │ ├── SimpleForms.cshtml │ ├── Startup.cs │ ├── StartupWithBasePath.cs │ ├── TagHelpers.cshtml │ ├── TempData │ │ ├── SetMessageAndRedirect.cshtml │ │ ├── SetTempDataOnPageAndRedirect.cshtml │ │ ├── SetTempDataOnPageModelAndRedirect.cs │ │ ├── SetTempDataOnPageModelAndRedirect.cshtml │ │ ├── ShowMessage.cshtml │ │ ├── TempDataPageModel.cs │ │ └── TempDataPageModelProperty.cshtml │ ├── Views │ │ └── Shared │ │ │ ├── _FileInShared.cshtml │ │ │ ├── _GlobalLayout.cshtml │ │ │ ├── _PartialWithModel.cshtml │ │ │ ├── _PartialWithoutModel.cshtml │ │ │ └── _Shared.cshtml │ ├── _Root.cshtml │ ├── _ViewStart.cshtml │ └── readme.md │ ├── RazorWebSite │ ├── Components │ │ ├── ComponentForViewWithPaths.cs │ │ ├── ComponentThatSetsTitle.cs │ │ ├── ComponentWithLayout.cs │ │ ├── ComponentWithRelativePath.cs │ │ ├── ComponentWithViewStart.cs │ │ └── InheritingViewComponent.cs │ ├── Controllers │ │ ├── AddTagHelperComponentController.cs │ │ ├── BackSlashController.cs │ │ ├── DataAnnotationController.cs │ │ ├── DirectivesController.cs │ │ ├── EmbeddedViewsController.cs │ │ ├── ExpanderViewsController.cs │ │ ├── FlushPoint.cs │ │ ├── HtmlHelperOptionsController.cs │ │ ├── NestedViewStartsController.cs │ │ ├── PartialViewEngineController.cs │ │ ├── PartialsWithLayoutController.cs │ │ ├── TagHelperComponentController.cs │ │ ├── TemplateExpander.cs │ │ ├── UpdateableFileProviderController.cs │ │ ├── UrlResolutionController.cs │ │ ├── ViewEngineController.cs │ │ ├── ViewNameSpecification_HomeController.cs │ │ ├── ViewWithPathsController.cs │ │ └── ViewsConsumingCompilationOptionsController.cs │ ├── EmbeddedResources │ │ └── Views │ │ │ ├── EmbeddedShared │ │ │ ├── _Layout.cshtml │ │ │ └── _Partial.cshtml │ │ │ ├── EmbeddedViews │ │ │ ├── EmbeddedPartial.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── RelativeNonPath.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ │ └── Shared │ │ │ └── _EmbeddedPartial.cshtml │ ├── Models │ │ ├── Address.cs │ │ ├── EnumModel.cs │ │ └── Person.cs │ ├── MyBasePage.cs │ ├── NestedViewImportsController.cs │ ├── Pages │ │ └── Shared │ │ │ ├── _Layout.cshtml │ │ │ └── _SharedFromPages.cshtml │ ├── Program.cs │ ├── RazorWebSite.csproj │ ├── Resources │ │ ├── Models │ │ │ └── ModelEnum.resx │ │ └── SingleType.resx │ ├── Services │ │ ├── BackSlashExpander.cs │ │ ├── FrameworkSpecificHelper.cs │ │ ├── InjectedHelper.cs │ │ ├── NonMainPageViewLocationExpander.cs │ │ ├── TaskReturningService.cs │ │ ├── TestBodyTagHelperComponent.cs │ │ ├── TestHeadTagHelperComponent.cs │ │ └── UpdateableFileProvider.cs │ ├── Shared-Views │ │ └── ExpanderViews │ │ │ ├── Index.cshtml │ │ │ └── _ExpanderPartial.cshtml │ ├── SingleType.cs │ ├── Startup.cs │ ├── StartupDataAnnotations.cs │ ├── Views │ │ ├── AddTagHelperComponent │ │ │ └── AddComponent.cshtml │ │ ├── BackSlash │ │ │ ├── BackSlashView.cshtml │ │ │ ├── _BackSlashPartial.cshtml │ │ │ └── _Layout.cshtml │ │ ├── Directives │ │ │ ├── Scoped │ │ │ │ ├── ViewInheritsBasePageFromViewImports.cshtml │ │ │ │ ├── _Layout.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ │ ├── ViewInheritsInjectAndUsingsFromViewImports.cshtml │ │ │ └── _ViewImports.cshtml │ │ ├── Enum │ │ │ └── Enum.cshtml │ │ ├── ExpanderViews │ │ │ └── Index.cshtml │ │ ├── FlushPoint │ │ │ ├── PageWithFlushBeforeLayout.cshtml │ │ │ ├── PageWithLayout.cshtml │ │ │ ├── PageWithNestedLayout.cshtml │ │ │ ├── PageWithPartialsAndViewComponents.cshtml │ │ │ ├── PageWithSectionInvokedViaRenderSectionAsync.cshtml │ │ │ └── PageWithoutLayout.cshtml │ │ ├── HtmlHelperOptions │ │ │ ├── HtmlHelperOptionsDefaultsInPartialView.cshtml │ │ │ ├── HtmlHelperOptionsDefaultsInView.cshtml │ │ │ ├── OverrideAppWideDefaultsInPartialView.cshtml │ │ │ └── OverrideAppWideDefaultsInView.cshtml │ │ ├── InheritingInherits │ │ │ ├── Index.cshtml │ │ │ ├── _ViewComponent.cshtml │ │ │ └── _ViewImports.cshtml │ │ ├── NestedViewImports │ │ │ ├── Nested │ │ │ │ ├── Index.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ │ └── _ViewImports.cshtml │ │ ├── NestedViewStarts │ │ │ ├── NestedViewStarts │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Layout.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── PartialViewEngine │ │ │ ├── PartialMissingSection.cshtml │ │ │ ├── PartialWithModel.cshtml │ │ │ ├── ViewPartialMissingSection.cshtml │ │ │ ├── ViewWithDataFromController.cshtml │ │ │ ├── ViewWithFullPath.cshtml │ │ │ ├── ViewWithLayout.cshtml │ │ │ ├── ViewWithNestedLayout.cshtml │ │ │ └── ViewWithoutLayout.cshtml │ │ ├── PartialsWithLayout │ │ │ ├── LayoutForViewStartWithLayout.cshtml │ │ │ ├── PartialThatDoesNotSpecifyLayout.cshtml │ │ │ ├── PartialThatSpecifiesLayout.cshtml │ │ │ ├── PartialsRenderedViaPartialAsync.cshtml │ │ │ ├── PartialsRenderedViaRenderPartial.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── Shared │ │ │ ├── Components │ │ │ │ ├── ComponentForViewWithPaths │ │ │ │ │ └── Default.cshtml │ │ │ │ ├── ComponentThatSetsTitle │ │ │ │ │ └── Default.cshtml │ │ │ │ ├── ComponentWithLayout │ │ │ │ │ └── Default.cshtml │ │ │ │ ├── ComponentWithRelativePath.cshtml │ │ │ │ └── ComponentWithViewStart │ │ │ │ │ ├── Default.cshtml │ │ │ │ │ └── _ViewStart.cshtml │ │ │ ├── DisplayTemplates │ │ │ │ └── Name.cshtml │ │ │ ├── _ComponentLayout.cshtml │ │ │ ├── _Layout.cshtml │ │ │ ├── _LayoutWithFlush.cshtml │ │ │ ├── _LayoutWithPartialAndFlush.cshtml │ │ │ ├── _LayoutWithRenderSectionAsync.cshtml │ │ │ ├── _LayoutWithRenderSectionOnly.cshtml │ │ │ ├── _LayoutWithTitle.cshtml │ │ │ ├── _NestedLayoutWithFlush.cshtml │ │ │ ├── _Partial.cshtml │ │ │ ├── _PartialLayout.cshtml │ │ │ ├── _PartialThatSetsTitle.cshtml │ │ │ ├── _PartialWithFlush.cshtml │ │ │ └── _PartialWithModelFromEnumerable.cshtml │ │ ├── TagHelperComponent │ │ │ ├── Body.cshtml │ │ │ └── Head.cshtml │ │ ├── TemplateExpander │ │ │ ├── Index.cshtml │ │ │ ├── ViewWithLayout.cshtml │ │ │ ├── _LanguageLayout.cshtml │ │ │ ├── _Partial.cshtml │ │ │ ├── en-GB │ │ │ │ └── _Partial.cshtml │ │ │ └── fr │ │ │ │ ├── Index.cshtml │ │ │ │ ├── _LanguageLayout.cshtml │ │ │ │ └── _Partial.cshtml │ │ ├── UrlResolution │ │ │ └── Index.cshtml │ │ ├── ViewEngine │ │ │ ├── SearchInPages.cshtml │ │ │ ├── ViewWithComponentThatHasLayout.cshtml │ │ │ ├── ViewWithComponentThatHasViewStart.cshtml │ │ │ ├── ViewWithDataFromController.cshtml │ │ │ ├── ViewWithFullPath.cshtml │ │ │ ├── ViewWithLayout.cshtml │ │ │ ├── ViewWithNestedLayout.cshtml │ │ │ ├── ViewWithPartial.cshtml │ │ │ ├── ViewWithPartialTakingModelFromIEnumerable.cshtml │ │ │ ├── ViewWithRelativePath.cshtml │ │ │ ├── ViewWithTitle.cshtml │ │ │ ├── ViewWithoutLayout.cshtml │ │ │ └── _NestedLayout.cshtml │ │ ├── ViewNameSpecification_Home │ │ │ ├── LayoutSpecifiedWithPartialPathInPage.cshtml │ │ │ ├── LayoutSpecifiedWithPartialPathInViewStart.cshtml │ │ │ ├── NonSharedPartial.cshtml │ │ │ ├── PageWithNonPartialLayoutPath.cshtml │ │ │ ├── ViewWithPartials.cshtml │ │ │ ├── _NonSharedLayout.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── ViewWithPaths │ │ │ ├── Index.cshtml │ │ │ ├── _Layout.cshtml │ │ │ ├── _Partial.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── ViewsConsumingCompilationOptions │ │ │ ├── Index.cshtml │ │ │ └── _Partial.cshtml │ │ └── _ViewImports.cshtml │ └── readme.md │ ├── RoutingWebSite │ ├── Areas │ │ ├── Admin │ │ │ ├── LG3Controller.cs │ │ │ ├── Pages │ │ │ │ ├── LGAreaPage.cshtml │ │ │ │ └── LGAreaPage.cshtml.cs │ │ │ └── UserManagementController.cs │ │ ├── Order │ │ │ └── OrderController.cs │ │ └── Travel │ │ │ ├── FlightController.cs │ │ │ ├── HomeController.cs │ │ │ └── RailController.cs │ ├── ControllerRouteTokenTransformerConvention.cs │ ├── Controllers │ │ ├── BanksController.cs │ │ ├── BlogController.cs │ │ ├── CompanyController.cs │ │ ├── ConventionalTransformerController.cs │ │ ├── DataTokensController.cs │ │ ├── DefaultValuesController.cs │ │ ├── EmployeeController.cs │ │ ├── EndpointRoutingController.cs │ │ ├── FriendsController.cs │ │ ├── HomeController.cs │ │ ├── LG1Controller.cs │ │ ├── LG2Controller.cs │ │ ├── MapsController.cs │ │ ├── OrderController.cs │ │ ├── PageRouteController.cs │ │ ├── ParameterTransformerController.cs │ │ ├── RouteDataController.cs │ │ ├── RoutingController.cs │ │ ├── StoreController.cs │ │ └── TeamController.cs │ ├── HttpMergeAttribute.cs │ ├── Pages │ │ ├── Edit.cshtml │ │ ├── LGAnotherPage.cshtml │ │ ├── LGAnotherPage.cshtml.cs │ │ ├── LGPage.cshtml │ │ ├── LGPage.cshtml.cs │ │ ├── PageRouteTransformer │ │ │ ├── Index.cshtml │ │ │ ├── PageWithConfiguredRoute.cshtml │ │ │ └── TestPage.cshtml │ │ └── PageWithLinks.cshtml │ ├── Program.cs │ ├── RemoveControllerActionDescriptorProvider.cs │ ├── RoutingWebSite.csproj │ ├── Startup.cs │ ├── StartupForLinkGenerator.cs │ ├── StartupWith21Compat.cs │ ├── TestParameterTransformer.cs │ └── readme.md │ ├── SecurityWebSite │ ├── Controllers │ │ ├── AdministrationController.cs │ │ ├── AntiforgeryController.cs │ │ ├── HomeController.cs │ │ └── IgnoreAntiforgeryController.cs │ ├── CountingPolicyEvaluator.cs │ ├── Program.cs │ ├── SecurityWebSite.csproj │ ├── Startup.cs │ ├── StartupWith20CompatAndGlobalDenyAnonymousFilter.cs │ ├── StartupWithGlobalDenyAnonymousFilter.cs │ ├── Views │ │ ├── Home │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ └── _Layout.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ └── appsettings.json │ ├── SimpleWebSite │ ├── Controllers │ │ └── HomeController.cs │ ├── SimpleWebSite.csproj │ ├── Startup.cs │ └── readme.md │ ├── TagHelpersWebSite │ ├── Components │ │ ├── CopyrightViewComponent.cs │ │ ├── DanViewComponent.cs │ │ ├── GenericViewComponent.cs │ │ └── JacketColor.cs │ ├── Controllers │ │ ├── EmployeeController.cs │ │ ├── EncodersController.cs │ │ ├── HomeController.cs │ │ └── RemoveDefaultInheritedTagHelpersController.cs │ ├── Models │ │ ├── Employee.cs │ │ └── WebsiteContext.cs │ ├── Startup.cs │ ├── TagHelpers │ │ ├── ATagHelper.cs │ │ ├── AddProcessedAttributeTagHelper.cs │ │ ├── AutoLinkerTagHelper.cs │ │ ├── BoldTagHelper.cs │ │ ├── ConditionTagHelper.cs │ │ ├── CustomEncoderTagHelper.cs │ │ ├── DefaultEncoderTagHelper.cs │ │ ├── DictionaryPrefixTestTagHelper.cs │ │ ├── NestedViewImportsTagHelper.cs │ │ ├── NullEncoderTagHelper.cs │ │ ├── PrettyTagHelper.cs │ │ ├── RootViewStartTagHelper.cs │ │ ├── SurroundTagHelper.cs │ │ ├── TagCloudViewComponentTagHelper.cs │ │ └── WebsiteInformationTagHelper.cs │ ├── TagHelpersWebSite.csproj │ ├── Views │ │ ├── Employee │ │ │ ├── Create.cshtml │ │ │ ├── Details.cshtml │ │ │ └── DuplicateAntiforgeryTokenRegistration.cshtml │ │ ├── Encoders │ │ │ ├── CustomEncoder.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── NullEncoder.cshtml │ │ │ ├── ThreeEncoders.cshtml │ │ │ ├── TwoEncoders.cshtml │ │ │ ├── _Layout.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── Home │ │ │ ├── About.cshtml │ │ │ ├── Help.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── NestedViewImportsTagHelper.cshtml │ │ │ ├── UnboundDynamicAttributes.cshtml │ │ │ ├── ViewComponentTagHelpers.cshtml │ │ │ └── _ViewImports.cshtml │ │ ├── InheritedTagHelperPrefix │ │ │ ├── InheritedTagHelperPrefix.cshtml │ │ │ ├── NestedInheritedTagHelperPrefix │ │ │ │ ├── NestedInheritedTagHelperPrefix.cshtml │ │ │ │ ├── NestedOverriddenTagHelperPrefix.cshtml │ │ │ │ └── _ViewImports.cshtml │ │ │ ├── OverriddenTagHelperPrefix.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── RemoveDefaultInheritedTagHelpers │ │ │ ├── Index.cshtml │ │ │ └── _ViewImports.cshtml │ │ ├── RemoveInheritedTagHelpers │ │ │ ├── ViewWithInheritedRemoveTagHelper.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── Shared │ │ │ ├── Components │ │ │ │ ├── Copyright │ │ │ │ │ └── Default.cshtml │ │ │ │ ├── Dan │ │ │ │ │ └── Default.cshtml │ │ │ │ └── Generic │ │ │ │ │ └── Default.cshtml │ │ │ ├── ViewWithLayoutAndNestedTagHelper.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _LayoutWithRootTagHelper.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ └── readme.md │ ├── VersioningWebSite │ ├── Controllers │ │ ├── AddressController.cs │ │ ├── BooksController.cs │ │ ├── CustomersController.cs │ │ ├── ItemsController.cs │ │ ├── ItemsV2Controller.cs │ │ ├── MoviesController.cs │ │ ├── MoviesV2Controller.cs │ │ ├── PetsController.cs │ │ ├── RoutingController.cs │ │ ├── TicketsController.cs │ │ └── VouchersController.cs │ ├── Program.cs │ ├── Startup.cs │ ├── StartupWith21Compat.cs │ ├── VersionAttribute.cs │ ├── VersionDeleteAttribute.cs │ ├── VersionGetAttribute.cs │ ├── VersionPostAttribute.cs │ ├── VersionPutAttribute.cs │ ├── VersionRangeValidator.cs │ ├── VersionRouteAttribute.cs │ ├── VersioningWebSite.csproj │ └── readme.md │ ├── WebApiCompatShimWebSite │ ├── ActionSelectionFilter.cs │ ├── Controllers │ │ ├── ActionResults │ │ │ └── ActionResultController.cs │ │ ├── ActionSelection │ │ │ ├── Legacy │ │ │ │ ├── EnumParameterOverloadsController.cs │ │ │ │ ├── ParameterAttributeController.cs │ │ │ │ └── TestController.cs │ │ │ ├── WebAPIActionConventionsActionNameController.cs │ │ │ ├── WebAPIActionConventionsController.cs │ │ │ ├── WebAPIActionConventionsDefaultPostController.cs │ │ │ └── WebAPIActionConventionsVerbOverrideController.cs │ │ ├── BasicApiController.cs │ │ ├── HttpRequestMessage │ │ │ └── HttpRequestMessageController.cs │ │ ├── HttpResponseExceptionController.cs │ │ ├── MvcController.cs │ │ └── ParameterBinding │ │ │ └── EmployeesController.cs │ ├── Models │ │ ├── Employee.cs │ │ ├── User.cs │ │ ├── UserAddress.cs │ │ └── UserKind.cs │ ├── Startup.cs │ ├── WebApiCompatShimWebSite.csproj │ └── readme.md │ └── XmlFormattersWebSite │ ├── Controllers │ ├── HomeController.cs │ ├── IEnumerableController.cs │ ├── IQueryableController.cs │ ├── SerializableErrorController.cs │ ├── ValidationController.cs │ ├── XmlApiControllerBase.cs │ ├── XmlDataContractApiController.cs │ └── XmlSerializedApiController.cs │ ├── Models │ ├── Address.cs │ ├── DummyClass.cs │ ├── Employee.cs │ ├── Person.cs │ └── Store.cs │ ├── PersonWrapper.cs │ ├── PersonWrapperProvider.cs │ ├── PersonWrapperProviderFactory.cs │ ├── Startup.cs │ ├── StartupWith21Compat.cs │ ├── XmlFormattersWebSite.csproj │ └── readme.md └── version.props /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/.github/ISSUE_TEMPLATE -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vsts-pipelines/builds/ci-internal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/.vsts-pipelines/builds/ci-internal.yml -------------------------------------------------------------------------------- /.vsts-pipelines/builds/ci-public.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/.vsts-pipelines/builds/ci-public.yml -------------------------------------------------------------------------------- /.vsts-pipelines/templates/phases/default-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/.vsts-pipelines/templates/phases/default-build.yml -------------------------------------------------------------------------------- /.vsts-pipelines/templates/project-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/.vsts-pipelines/templates/project-ci.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Mvc.NoFun.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/Mvc.NoFun.sln -------------------------------------------------------------------------------- /Mvc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/Mvc.sln -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/NuGet.config -------------------------------------------------------------------------------- /NuGetPackageVerifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/NuGetPackageVerifier.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/README.md -------------------------------------------------------------------------------- /Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/Settings.StyleCop -------------------------------------------------------------------------------- /benchmarkapps/BasicApi/BasicApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/benchmarkapps/BasicApi/BasicApi.csproj -------------------------------------------------------------------------------- /benchmarkapps/BasicApi/Controllers/PetController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/benchmarkapps/BasicApi/Controllers/PetController.cs -------------------------------------------------------------------------------- /benchmarkapps/BasicApi/Controllers/TokenController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/benchmarkapps/BasicApi/Controllers/TokenController.cs -------------------------------------------------------------------------------- /benchmarkapps/BasicApi/Models/BasicApiContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/benchmarkapps/BasicApi/Models/BasicApiContext.cs -------------------------------------------------------------------------------- /benchmarkapps/BasicApi/Models/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/benchmarkapps/BasicApi/Models/Category.cs -------------------------------------------------------------------------------- /benchmarkapps/BasicApi/Models/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/benchmarkapps/BasicApi/Models/Image.cs -------------------------------------------------------------------------------- /benchmarkapps/BasicApi/Models/Pet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/benchmarkapps/BasicApi/Models/Pet.cs -------------------------------------------------------------------------------- /benchmarkapps/BasicApi/Models/Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/benchmarkapps/BasicApi/Models/Tag.cs -------------------------------------------------------------------------------- /benchmarkapps/BasicApi/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/benchmarkapps/BasicApi/Startup.cs -------------------------------------------------------------------------------- /benchmarkapps/BasicApi/benchmarks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/benchmarkapps/BasicApi/benchmarks.json -------------------------------------------------------------------------------- /benchmarkapps/BasicApi/getWithToken.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/benchmarkapps/BasicApi/getWithToken.lua -------------------------------------------------------------------------------- /benchmarkapps/BasicApi/postJsonWithToken.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/benchmarkapps/BasicApi/postJsonWithToken.lua -------------------------------------------------------------------------------- /benchmarkapps/BasicApi/runtimeconfig.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/benchmarkapps/BasicApi/runtimeconfig.template.json -------------------------------------------------------------------------------- /benchmarkapps/BasicViews/BasicViews.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/benchmarkapps/BasicViews/BasicViews.csproj -------------------------------------------------------------------------------- /benchmarkapps/BasicViews/BasicViewsContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/benchmarkapps/BasicViews/BasicViewsContext.cs -------------------------------------------------------------------------------- /benchmarkapps/BasicViews/Components/CurrentUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/benchmarkapps/BasicViews/Components/CurrentUser.cs -------------------------------------------------------------------------------- /benchmarkapps/BasicViews/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/benchmarkapps/BasicViews/Controllers/HomeController.cs -------------------------------------------------------------------------------- /benchmarkapps/BasicViews/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/benchmarkapps/BasicViews/Person.cs -------------------------------------------------------------------------------- /benchmarkapps/BasicViews/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/benchmarkapps/BasicViews/Startup.cs -------------------------------------------------------------------------------- /benchmarkapps/BasicViews/Views/Home/HtmlHelpers.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/benchmarkapps/BasicViews/Views/Home/HtmlHelpers.cshtml -------------------------------------------------------------------------------- /benchmarkapps/BasicViews/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/benchmarkapps/BasicViews/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /benchmarkapps/BasicViews/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/benchmarkapps/BasicViews/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /benchmarkapps/BasicViews/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/benchmarkapps/BasicViews/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /benchmarkapps/BasicViews/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/benchmarkapps/BasicViews/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /benchmarkapps/BasicViews/benchmarks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/benchmarkapps/BasicViews/benchmarks.json -------------------------------------------------------------------------------- /benchmarkapps/BasicViews/post.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/benchmarkapps/BasicViews/post.lua -------------------------------------------------------------------------------- /benchmarkapps/BasicViews/postWithToken.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/benchmarkapps/BasicViews/postWithToken.lua -------------------------------------------------------------------------------- /benchmarkapps/BasicViews/runtimeconfig.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/benchmarkapps/BasicViews/runtimeconfig.template.json -------------------------------------------------------------------------------- /benchmarkapps/BasicViews/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/benchmarkapps/BasicViews/web.config -------------------------------------------------------------------------------- /benchmarkapps/BasicViews/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/benchmarkapps/BasicViews/wwwroot/css/site.css -------------------------------------------------------------------------------- /benchmarkapps/BasicViews/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/benchmarkapps/BasicViews/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /benchmarkapps/BasicViews/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | console.log("Hello World"); 2 | function test() { 3 | } -------------------------------------------------------------------------------- /benchmarkapps/BasicViews/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | console.log("Hello Minified World"); 2 | function test() { 3 | } -------------------------------------------------------------------------------- /benchmarkapps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/benchmarkapps/README.md -------------------------------------------------------------------------------- /benchmarkapps/RazorRendering/Data/DataA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/benchmarkapps/RazorRendering/Data/DataA.cs -------------------------------------------------------------------------------- /benchmarkapps/RazorRendering/Data/DataB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/benchmarkapps/RazorRendering/Data/DataB.cs -------------------------------------------------------------------------------- /benchmarkapps/RazorRendering/Pages/Category/PageA.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/benchmarkapps/RazorRendering/Pages/Category/PageA.cshtml -------------------------------------------------------------------------------- /benchmarkapps/RazorRendering/Pages/Category/PageA.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/benchmarkapps/RazorRendering/Pages/Category/PageA.cshtml.cs -------------------------------------------------------------------------------- /benchmarkapps/RazorRendering/Pages/Page.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/benchmarkapps/RazorRendering/Pages/Page.cs -------------------------------------------------------------------------------- /benchmarkapps/RazorRendering/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/benchmarkapps/RazorRendering/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /benchmarkapps/RazorRendering/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/benchmarkapps/RazorRendering/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /benchmarkapps/RazorRendering/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/benchmarkapps/RazorRendering/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /benchmarkapps/RazorRendering/RazorRendering.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/benchmarkapps/RazorRendering/RazorRendering.csproj -------------------------------------------------------------------------------- /benchmarkapps/RazorRendering/Readme.md: -------------------------------------------------------------------------------- 1 | Url: /Category/PageA -------------------------------------------------------------------------------- /benchmarkapps/RazorRendering/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/benchmarkapps/RazorRendering/Startup.cs -------------------------------------------------------------------------------- /benchmarks/Microsoft.AspNetCore.Mvc.Performance.Views/Views/HelloWorld.cshtml: -------------------------------------------------------------------------------- 1 | Hello world -------------------------------------------------------------------------------- /benchmarks/Microsoft.AspNetCore.Mvc.Performance.Views/Views/HelperPartial_Partial.cshtml: -------------------------------------------------------------------------------- 1 | @model System.String 2 | @Model -------------------------------------------------------------------------------- /benchmarks/Microsoft.AspNetCore.Mvc.Performance/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/benchmarks/Microsoft.AspNetCore.Mvc.Performance/readme.md -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/global.json -------------------------------------------------------------------------------- /korebuild-lock.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/korebuild-lock.txt -------------------------------------------------------------------------------- /korebuild.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/korebuild.json -------------------------------------------------------------------------------- /run.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/run.cmd -------------------------------------------------------------------------------- /run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/run.ps1 -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/run.sh -------------------------------------------------------------------------------- /runWithProcDump.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/runWithProcDump.ps1 -------------------------------------------------------------------------------- /samples/MvcSandbox/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /samples/MvcSandbox/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore everything 2 | * 3 | -------------------------------------------------------------------------------- /samples/MvcSandbox/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/samples/MvcSandbox/Controllers/HomeController.cs -------------------------------------------------------------------------------- /samples/MvcSandbox/Controllers/LoginController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/samples/MvcSandbox/Controllers/LoginController.cs -------------------------------------------------------------------------------- /samples/MvcSandbox/Models/Index.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/MvcSandbox/Models/TestModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/samples/MvcSandbox/Models/TestModel.cs -------------------------------------------------------------------------------- /samples/MvcSandbox/MvcSandbox.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/samples/MvcSandbox/MvcSandbox.csproj -------------------------------------------------------------------------------- /samples/MvcSandbox/Pages/PagesHome.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/samples/MvcSandbox/Pages/PagesHome.cshtml -------------------------------------------------------------------------------- /samples/MvcSandbox/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/samples/MvcSandbox/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /samples/MvcSandbox/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/samples/MvcSandbox/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /samples/MvcSandbox/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/samples/MvcSandbox/Startup.cs -------------------------------------------------------------------------------- /samples/MvcSandbox/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/samples/MvcSandbox/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /samples/MvcSandbox/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/samples/MvcSandbox/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /samples/MvcSandbox/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/samples/MvcSandbox/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /samples/MvcSandbox/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/samples/MvcSandbox/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/GetDocumentInsider/AnsiConsole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/GetDocumentInsider/AnsiConsole.cs -------------------------------------------------------------------------------- /src/GetDocumentInsider/AnsiConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/GetDocumentInsider/AnsiConstants.cs -------------------------------------------------------------------------------- /src/GetDocumentInsider/AnsiTextWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/GetDocumentInsider/AnsiTextWriter.cs -------------------------------------------------------------------------------- /src/GetDocumentInsider/CommandException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/GetDocumentInsider/CommandException.cs -------------------------------------------------------------------------------- /src/GetDocumentInsider/CommandLineUtils/CommandArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/GetDocumentInsider/CommandLineUtils/CommandArgument.cs -------------------------------------------------------------------------------- /src/GetDocumentInsider/CommandLineUtils/CommandOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/GetDocumentInsider/CommandLineUtils/CommandOption.cs -------------------------------------------------------------------------------- /src/GetDocumentInsider/CommandLineUtils/CommandOptionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/GetDocumentInsider/CommandLineUtils/CommandOptionType.cs -------------------------------------------------------------------------------- /src/GetDocumentInsider/Commands/CommandBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/GetDocumentInsider/Commands/CommandBase.cs -------------------------------------------------------------------------------- /src/GetDocumentInsider/Commands/GetDocumentCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/GetDocumentInsider/Commands/GetDocumentCommand.cs -------------------------------------------------------------------------------- /src/GetDocumentInsider/Commands/GetDocumentCommandContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/GetDocumentInsider/Commands/GetDocumentCommandContext.cs -------------------------------------------------------------------------------- /src/GetDocumentInsider/Commands/GetDocumentCommandWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/GetDocumentInsider/Commands/GetDocumentCommandWorker.cs -------------------------------------------------------------------------------- /src/GetDocumentInsider/Commands/HelpCommandBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/GetDocumentInsider/Commands/HelpCommandBase.cs -------------------------------------------------------------------------------- /src/GetDocumentInsider/Commands/ProjectCommandBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/GetDocumentInsider/Commands/ProjectCommandBase.cs -------------------------------------------------------------------------------- /src/GetDocumentInsider/GetDocumentInsider.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/GetDocumentInsider/GetDocumentInsider.csproj -------------------------------------------------------------------------------- /src/GetDocumentInsider/ProductInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/GetDocumentInsider/ProductInfo.cs -------------------------------------------------------------------------------- /src/GetDocumentInsider/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/GetDocumentInsider/Program.cs -------------------------------------------------------------------------------- /src/GetDocumentInsider/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/GetDocumentInsider/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/GetDocumentInsider/Reporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/GetDocumentInsider/Reporter.cs -------------------------------------------------------------------------------- /src/GetDocumentInsider/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/GetDocumentInsider/Resources.resx -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Abstractions/ActionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Abstractions/ActionContext.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Abstractions/IActionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Abstractions/IActionResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Abstractions/IUrlHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Abstractions/IUrlHelper.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Abstractions/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Abstractions/Resources.resx -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Analyzers/MvcFacts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Analyzers/MvcFacts.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Analyzers/SymbolNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Analyzers/SymbolNames.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Api.Analyzers/ApiSymbolNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Api.Analyzers/ApiSymbolNames.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/AcceptVerbsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/AcceptVerbsAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/AcceptedAtActionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/AcceptedAtActionResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/AcceptedAtRouteResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/AcceptedAtRouteResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/AcceptedResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/AcceptedResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/ActionContextAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/ActionContextAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/ActionNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/ActionNameAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/ActionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/ActionResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/ActionResultOfT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/ActionResultOfT.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/ApiBehaviorOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/ApiBehaviorOptions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/ApiControllerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/ApiControllerAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/AreaAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/AreaAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/BadRequestObjectResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/BadRequestObjectResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/BadRequestResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/BadRequestResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/BindAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/BindAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/BindPropertiesAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/BindPropertiesAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/BindPropertyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/BindPropertyAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/Builder/MvcEndpointInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/Builder/MvcEndpointInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/CacheProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/CacheProfile.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/ChallengeResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/ChallengeResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/ClientErrorData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/ClientErrorData.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/CompatibilityVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/CompatibilityVersion.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/ConflictObjectResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/ConflictObjectResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/ConflictResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/ConflictResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/ConsumesAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/ConsumesAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/ContentResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/ContentResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/ControllerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/ControllerAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/ControllerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/ControllerBase.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/ControllerContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/ControllerContext.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/CreatedAtActionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/CreatedAtActionResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/CreatedAtRouteResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/CreatedAtRouteResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/CreatedResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/CreatedResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/DefaultApiConventions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/DefaultApiConventions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/EmptyResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/EmptyResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/FileContentResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/FileContentResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/FileResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/FileResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/FileStreamResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/FileStreamResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/Filters/FilterCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/Filters/FilterCollection.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/Filters/FilterCursor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/Filters/FilterCursor.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/Filters/FilterCursorItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/Filters/FilterCursorItem.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/Filters/FilterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/Filters/FilterFactory.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/Filters/FilterScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/Filters/FilterScope.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/Filters/MiddlewareFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/Filters/MiddlewareFilter.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/ForbidResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/ForbidResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/FormatFilterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/FormatFilterAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/Formatters/FormatFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/Formatters/FormatFilter.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/Formatters/IFormatFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/Formatters/IFormatFilter.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/Formatters/MediaType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/Formatters/MediaType.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/FromBodyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/FromBodyAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/FromFormAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/FromFormAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/FromHeaderAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/FromHeaderAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/FromQueryAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/FromQueryAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/FromRouteAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/FromRouteAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/FromServicesAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/FromServicesAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/HttpDeleteAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/HttpDeleteAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/HttpGetAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/HttpGetAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/HttpHeadAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/HttpHeadAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/HttpOptionsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/HttpOptionsAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/HttpPatchAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/HttpPatchAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/HttpPostAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/HttpPostAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/HttpPutAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/HttpPutAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/IApiBehaviorMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/IApiBehaviorMetadata.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/IRequestFormLimitsPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/IRequestFormLimitsPolicy.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/IRequestSizePolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/IRequestSizePolicy.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/LocalRedirectResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/LocalRedirectResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/ModelBinderAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/ModelBinderAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/ModelBinding/ModelNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/ModelBinding/ModelNames.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/ModelBinding/NoOpBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/ModelBinding/NoOpBinder.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/MvcCoreLoggerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/MvcCoreLoggerExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/MvcOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/MvcOptions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/NoContentResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/NoContentResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/NonActionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/NonActionAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/NonControllerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/NonControllerAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/NotFoundObjectResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/NotFoundObjectResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/NotFoundResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/NotFoundResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/ObjectResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/ObjectResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/OkObjectResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/OkObjectResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/OkResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/OkResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/PhysicalFileResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/PhysicalFileResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/ProblemDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/ProblemDetails.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/ProducesAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/ProducesAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/RedirectResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/RedirectResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/RedirectToActionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/RedirectToActionResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/RedirectToPageResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/RedirectToPageResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/RedirectToRouteResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/RedirectToRouteResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/RequireHttpsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/RequireHttpsAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/Resources.resx -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/ResponseCacheAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/ResponseCacheAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/ResponseCacheLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/ResponseCacheLocation.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/RouteAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/RouteAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/Routing/AttributeRoute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/Routing/AttributeRoute.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/Routing/AttributeRouting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/Routing/AttributeRouting.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/Routing/ConsumesMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/Routing/ConsumesMetadata.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/Routing/MvcRouteHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/Routing/MvcRouteHandler.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/Routing/NullRouter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/Routing/NullRouter.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/Routing/UrlHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/Routing/UrlHelper.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/Routing/UrlHelperBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/Routing/UrlHelperBase.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/Routing/UrlHelperFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/Routing/UrlHelperFactory.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/Routing/ViewEnginePath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/Routing/ViewEnginePath.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/SerializableError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/SerializableError.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/ServiceFilterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/ServiceFilterAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/SignInResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/SignInResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/SignOutResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/SignOutResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/StatusCodeResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/StatusCodeResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/TypeFilterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/TypeFilterAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/UnauthorizedObjectResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/UnauthorizedObjectResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/UnauthorizedResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/UnauthorizedResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/UrlHelperExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/UrlHelperExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/ValidationProblemDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/ValidationProblemDetails.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/VirtualFileResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/VirtualFileResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Core/baseline.netcore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Core/baseline.netcore.json -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Cors/CorsAuthorizationFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Cors/CorsAuthorizationFilter.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Cors/CorsLoggerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Cors/CorsLoggerExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Cors/ICorsAuthorizationFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Cors/ICorsAuthorizationFilter.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Cors/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Cors/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Cors/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Cors/Resources.resx -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Cors/baseline.netcore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Cors/baseline.netcore.json -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.DataAnnotations/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.DataAnnotations/Resources.resx -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Formatters.Json/JsonArrayPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Formatters.Json/JsonArrayPool.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Formatters.Json/JsonResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Formatters.Json/JsonResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Formatters.Json/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Formatters.Json/Resources.resx -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Formatters.Xml/IUnwrappable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Formatters.Xml/IUnwrappable.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Formatters.Xml/MvcXmlOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Formatters.Xml/MvcXmlOptions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Formatters.Xml/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Formatters.Xml/Resources.resx -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Localization/HtmlLocalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Localization/HtmlLocalizer.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Localization/HtmlLocalizerOfT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Localization/HtmlLocalizerOfT.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Localization/IHtmlLocalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Localization/IHtmlLocalizer.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Localization/IViewLocalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Localization/IViewLocalizer.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Localization/ViewLocalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Localization/ViewLocalizer.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor/DefaultTagHelperFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Razor/DefaultTagHelperFactory.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor/HelperResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Razor/HelperResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor/IModelTypeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Razor/IModelTypeProvider.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor/IRazorPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Razor/IRazorPage.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor/IRazorPageActivator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Razor/IRazorPageActivator.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor/IRazorViewEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Razor/IRazorViewEngine.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor/ITagHelperActivator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Razor/ITagHelperActivator.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor/ITagHelperFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Razor/ITagHelperFactory.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor/IViewLocationExpander.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Razor/IViewLocationExpander.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Razor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor/RazorFileHierarchy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Razor/RazorFileHierarchy.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor/RazorPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Razor/RazorPage.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor/RazorPageActivator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Razor/RazorPageActivator.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor/RazorPageBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Razor/RazorPageBase.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor/RazorPageFactoryResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Razor/RazorPageFactoryResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor/RazorPageOfT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Razor/RazorPageOfT.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor/RazorPageResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Razor/RazorPageResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor/RazorView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Razor/RazorView.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor/RazorViewEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Razor/RazorViewEngine.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor/RazorViewEngineOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Razor/RazorViewEngineOptions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor/RenderAsyncDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Razor/RenderAsyncDelegate.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Razor/Resources.resx -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor/TagHelperInitializerOfT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Razor/TagHelperInitializerOfT.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor/ViewLocationCacheItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Razor/ViewLocationCacheItem.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor/ViewLocationCacheKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Razor/ViewLocationCacheKey.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor/ViewLocationCacheResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Razor/ViewLocationCacheResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor/ViewPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Razor/ViewPath.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor/baseline.netcore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Razor/baseline.netcore.json -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.RazorPages/Page.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.RazorPages/Page.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.RazorPages/PageBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.RazorPages/PageBase.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.RazorPages/PageContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.RazorPages/PageContext.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.RazorPages/PageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.RazorPages/PageModel.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.RazorPages/PageResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.RazorPages/PageResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.RazorPages/RazorPagesOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.RazorPages/RazorPagesOptions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.RazorPages/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.RazorPages/Resources.resx -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.RazorPages/baseline.netcore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.RazorPages/baseline.netcore.json -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.TagHelpers/AnchorTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.TagHelpers/AnchorTagHelper.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.TagHelpers/AttributeMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.TagHelpers/AttributeMatcher.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.TagHelpers/Cache/CacheTagKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.TagHelpers/Cache/CacheTagKey.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.TagHelpers/CacheTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.TagHelpers/CacheTagHelper.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.TagHelpers/CacheTagHelperBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.TagHelpers/CacheTagHelperBase.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.TagHelpers/CurrentValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.TagHelpers/CurrentValues.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.TagHelpers/FormTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.TagHelpers/FormTagHelper.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.TagHelpers/GlobbingUrlBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.TagHelpers/GlobbingUrlBuilder.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.TagHelpers/ImageTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.TagHelpers/ImageTagHelper.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.TagHelpers/InputTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.TagHelpers/InputTagHelper.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.TagHelpers/LabelTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.TagHelpers/LabelTagHelper.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.TagHelpers/LinkTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.TagHelpers/LinkTagHelper.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.TagHelpers/ModeAttributesOfT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.TagHelpers/ModeAttributesOfT.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.TagHelpers/OptionTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.TagHelpers/OptionTagHelper.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.TagHelpers/PartialTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.TagHelpers/PartialTagHelper.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.TagHelpers/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.TagHelpers/Resources.resx -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.TagHelpers/ScriptTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.TagHelpers/ScriptTagHelper.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.TagHelpers/SelectTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.TagHelpers/SelectTagHelper.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.TagHelpers/TextAreaTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.TagHelpers/TextAreaTagHelper.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.TagHelpers/_grunt.readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.TagHelpers/_grunt.readme -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.TagHelpers/_gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.TagHelpers/_gruntfile.js -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.TagHelpers/_package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.TagHelpers/_package.json -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.TagHelpers/baseline.netcore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.TagHelpers/baseline.netcore.json -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Testing/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Testing/Resources.resx -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Testing/WebApplicationFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Testing/WebApplicationFactory.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Testing/baseline.netcore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.Testing/baseline.netcore.json -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.ViewFeatures/Controller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.ViewFeatures/Controller.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.ViewFeatures/DynamicViewData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.ViewFeatures/DynamicViewData.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.ViewFeatures/ExpressionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.ViewFeatures/ExpressionHelper.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.ViewFeatures/FormContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.ViewFeatures/FormContext.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.ViewFeatures/FormatWeekHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.ViewFeatures/FormatWeekHelper.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.ViewFeatures/HtmlHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.ViewFeatures/HtmlHelper.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.ViewFeatures/HtmlHelperOfT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.ViewFeatures/HtmlHelperOfT.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.ViewFeatures/IHtmlGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.ViewFeatures/IHtmlGenerator.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.ViewFeatures/InputType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.ViewFeatures/InputType.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.ViewFeatures/JsonHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.ViewFeatures/JsonHelper.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.ViewFeatures/ModelExplorer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.ViewFeatures/ModelExplorer.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.ViewFeatures/ModelExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.ViewFeatures/ModelExpression.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.ViewFeatures/MvcViewOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.ViewFeatures/MvcViewOptions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.ViewFeatures/NullView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.ViewFeatures/NullView.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.ViewFeatures/RemoteAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.ViewFeatures/RemoteAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.ViewFeatures/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.ViewFeatures/Resources.resx -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.ViewFeatures/TemplateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.ViewFeatures/TemplateBuilder.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.ViewFeatures/TemplateInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.ViewFeatures/TemplateInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.ViewFeatures/TemplateRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.ViewFeatures/TemplateRenderer.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.ViewFeatures/ViewComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.ViewFeatures/ViewComponent.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.ViewFeatures/ViewDataInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.ViewFeatures/ViewDataInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.ViewFeatures/ViewExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.ViewFeatures/ViewExecutor.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.ViewFeatures/ViewResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc.ViewFeatures/ViewResult.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc/Microsoft.AspNetCore.Mvc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc/Microsoft.AspNetCore.Mvc.csproj -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc/baseline.netcore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.AspNetCore.Mvc/baseline.netcore.json -------------------------------------------------------------------------------- /src/Microsoft.Extensions.ApiDescription.Design/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/Microsoft.Extensions.ApiDescription.Design/Resources.resx -------------------------------------------------------------------------------- /src/dotnet-getdocument/Commands/InvokeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/dotnet-getdocument/Commands/InvokeCommand.cs -------------------------------------------------------------------------------- /src/dotnet-getdocument/Exe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/dotnet-getdocument/Exe.cs -------------------------------------------------------------------------------- /src/dotnet-getdocument/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/dotnet-getdocument/Program.cs -------------------------------------------------------------------------------- /src/dotnet-getdocument/Project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/dotnet-getdocument/Project.cs -------------------------------------------------------------------------------- /src/dotnet-getdocument/ProjectOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/dotnet-getdocument/ProjectOptions.cs -------------------------------------------------------------------------------- /src/dotnet-getdocument/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/dotnet-getdocument/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/dotnet-getdocument/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/dotnet-getdocument/Resources.resx -------------------------------------------------------------------------------- /src/dotnet-getdocument/dotnet-getdocument.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/src/dotnet-getdocument/dotnet-getdocument.csproj -------------------------------------------------------------------------------- /test/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/Directory.Build.props -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Core.Test/BindAttributeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/Microsoft.AspNetCore.Mvc.Core.Test/BindAttributeTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Core.Test/ConflictResultTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/Microsoft.AspNetCore.Mvc.Core.Test/ConflictResultTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Core.Test/ContentResultTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/Microsoft.AspNetCore.Mvc.Core.Test/ContentResultTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Core.Test/ControllerBaseTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/Microsoft.AspNetCore.Mvc.Core.Test/ControllerBaseTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Core.Test/CreatedResultTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/Microsoft.AspNetCore.Mvc.Core.Test/CreatedResultTests.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Core.Test/EmptyResultTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/Microsoft.AspNetCore.Mvc.Core.Test/EmptyResultTests.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Core.Test/FileResultTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/Microsoft.AspNetCore.Mvc.Core.Test/FileResultTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Core.Test/ForbidResultTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/Microsoft.AspNetCore.Mvc.Core.Test/ForbidResultTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Core.Test/HttpOkResultTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/Microsoft.AspNetCore.Mvc.Core.Test/HttpOkResultTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Core.Test/MvcOptionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/Microsoft.AspNetCore.Mvc.Core.Test/MvcOptionsTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Core.Test/ObjectResultTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/Microsoft.AspNetCore.Mvc.Core.Test/ObjectResultTests.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Core.Test/RedirectResultTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/Microsoft.AspNetCore.Mvc.Core.Test/RedirectResultTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Core.Test/SignInResultTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/Microsoft.AspNetCore.Mvc.Core.Test/SignInResultTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Core.Test/SignOutResultTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/Microsoft.AspNetCore.Mvc.Core.Test/SignOutResultTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Core.Test/xunit.runner.json: -------------------------------------------------------------------------------- 1 | { 2 | "shadowCopy": false 3 | } 4 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Core.TestCommon/LinkBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/Microsoft.AspNetCore.Mvc.Core.TestCommon/LinkBuilder.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.FunctionalTests/BasicApiTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/Microsoft.AspNetCore.Mvc.FunctionalTests/BasicApiTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.FunctionalTests/BasicTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/Microsoft.AspNetCore.Mvc.FunctionalTests/BasicTests.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.FunctionalTests/CorsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/Microsoft.AspNetCore.Mvc.FunctionalTests/CorsTests.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.FunctionalTests/FiltersTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/Microsoft.AspNetCore.Mvc.FunctionalTests/FiltersTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.FunctionalTests/RoutingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/Microsoft.AspNetCore.Mvc.FunctionalTests/RoutingTests.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.FunctionalTests/SimpleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/Microsoft.AspNetCore.Mvc.FunctionalTests/SimpleTests.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.FunctionalTests/compiler/resources/BasicWebSite.Home.PlainView.html: -------------------------------------------------------------------------------- 1 | Plain View -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.FunctionalTests/compiler/resources/BasicWebSite.PassThrough.Index.html: -------------------------------------------------------------------------------- 1 |

The passed through value was: 123

-------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Test/RazorPageTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/Microsoft.AspNetCore.Mvc.Razor.Test/RazorPageTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Test/RazorViewTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/Microsoft.AspNetCore.Mvc.Razor.Test/RazorViewTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Test/ViewPathTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/Microsoft.AspNetCore.Mvc.Razor.Test/ViewPathTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.Test/xunit.runner.json: -------------------------------------------------------------------------------- 1 | { 2 | "shadowCopy": false 3 | } 4 | -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.RazorPages.Test/PageTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/Microsoft.AspNetCore.Mvc.RazorPages.Test/PageTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Test/JsonPatchExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/Microsoft.AspNetCore.Mvc.Test/JsonPatchExtensionsTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Test/MvcOptionsSetupTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/Microsoft.AspNetCore.Mvc.Test/MvcOptionsSetupTest.cs -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Test/xunit.runner.json: -------------------------------------------------------------------------------- 1 | { 2 | "shadowCopy": false 3 | } 4 | -------------------------------------------------------------------------------- /test/Mvc.Analyzers.Test/AvoidHtmlPartialAnalyzerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/Mvc.Analyzers.Test/AvoidHtmlPartialAnalyzerTest.cs -------------------------------------------------------------------------------- /test/Mvc.Analyzers.Test/CodeAnalysisExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/Mvc.Analyzers.Test/CodeAnalysisExtensionsTest.cs -------------------------------------------------------------------------------- /test/Mvc.Analyzers.Test/Infrastructure/MvcTestSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/Mvc.Analyzers.Test/Infrastructure/MvcTestSource.cs -------------------------------------------------------------------------------- /test/Mvc.Analyzers.Test/Mvc.Analyzers.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/Mvc.Analyzers.Test/Mvc.Analyzers.Test.csproj -------------------------------------------------------------------------------- /test/Mvc.Analyzers.Test/TopLevelParameterNameAnalyzerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/Mvc.Analyzers.Test/TopLevelParameterNameAnalyzerTest.cs -------------------------------------------------------------------------------- /test/Mvc.Analyzers.Test/xunit.runner.json: -------------------------------------------------------------------------------- 1 | { 2 | "shadowCopy": false 3 | } 4 | -------------------------------------------------------------------------------- /test/Mvc.Api.Analyzers.Test/ApiControllerFactsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/Mvc.Api.Analyzers.Test/ApiControllerFactsTest.cs -------------------------------------------------------------------------------- /test/Mvc.Api.Analyzers.Test/Mvc.Api.Analyzers.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/Mvc.Api.Analyzers.Test/Mvc.Api.Analyzers.Test.csproj -------------------------------------------------------------------------------- /test/Mvc.Api.Analyzers.Test/MvcFactsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/Mvc.Api.Analyzers.Test/MvcFactsTest.cs -------------------------------------------------------------------------------- /test/Mvc.Api.Analyzers.Test/SymbolApiConventionMatcherTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/Mvc.Api.Analyzers.Test/SymbolApiConventionMatcherTest.cs -------------------------------------------------------------------------------- /test/MvcTests.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/MvcTests.ruleset -------------------------------------------------------------------------------- /test/WebSites/ApiExplorerWebSite/ApiExplorerDataFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/ApiExplorerWebSite/ApiExplorerDataFilter.cs -------------------------------------------------------------------------------- /test/WebSites/ApiExplorerWebSite/ApiExplorerWebSite.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/ApiExplorerWebSite/ApiExplorerWebSite.csproj -------------------------------------------------------------------------------- /test/WebSites/ApiExplorerWebSite/Models/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/ApiExplorerWebSite/Models/Customer.cs -------------------------------------------------------------------------------- /test/WebSites/ApiExplorerWebSite/Models/OrderDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/ApiExplorerWebSite/Models/OrderDTO.cs -------------------------------------------------------------------------------- /test/WebSites/ApiExplorerWebSite/Models/OrderDetailsDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/ApiExplorerWebSite/Models/OrderDetailsDTO.cs -------------------------------------------------------------------------------- /test/WebSites/ApiExplorerWebSite/Models/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/ApiExplorerWebSite/Models/Product.cs -------------------------------------------------------------------------------- /test/WebSites/ApiExplorerWebSite/PassThruAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/ApiExplorerWebSite/PassThruAttribute.cs -------------------------------------------------------------------------------- /test/WebSites/ApiExplorerWebSite/ReloadAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/ApiExplorerWebSite/ReloadAttribute.cs -------------------------------------------------------------------------------- /test/WebSites/ApiExplorerWebSite/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/ApiExplorerWebSite/Startup.cs -------------------------------------------------------------------------------- /test/WebSites/ApiExplorerWebSite/WellKnownChangeToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/ApiExplorerWebSite/WellKnownChangeToken.cs -------------------------------------------------------------------------------- /test/WebSites/ApiExplorerWebSite/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/ApiExplorerWebSite/readme.md -------------------------------------------------------------------------------- /test/WebSites/ApplicationModelWebSite/Areas/Manage/Views/MultipleAreas/Index.cshtml: -------------------------------------------------------------------------------- 1 | Manage View -------------------------------------------------------------------------------- /test/WebSites/ApplicationModelWebSite/Areas/Products/Views/MultipleAreas/Index.cshtml: -------------------------------------------------------------------------------- 1 | Products View -------------------------------------------------------------------------------- /test/WebSites/ApplicationModelWebSite/Areas/Services/Views/MultipleAreas/Index.cshtml: -------------------------------------------------------------------------------- 1 | Services View 2 | -------------------------------------------------------------------------------- /test/WebSites/ApplicationModelWebSite/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/ApplicationModelWebSite/Startup.cs -------------------------------------------------------------------------------- /test/WebSites/ApplicationModelWebSite/Views/ActionModel/Help.cshtml: -------------------------------------------------------------------------------- 1 | This is the help page 2 | -------------------------------------------------------------------------------- /test/WebSites/ApplicationModelWebSite/Views/ActionModel/MoreHelp.cshtml: -------------------------------------------------------------------------------- 1 | This is the more help page 2 | -------------------------------------------------------------------------------- /test/WebSites/ApplicationModelWebSite/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/ApplicationModelWebSite/readme.md -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/ActionDescriptorCreationCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/ActionDescriptorCreationCounter.cs -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/BasicAuthenticationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/BasicAuthenticationHandler.cs -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/BasicWebSite.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/BasicWebSite.csproj -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/ConfigureAuthPolicies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/ConfigureAuthPolicies.cs -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/ContactsRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/ContactsRepository.cs -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/Controllers/FiltersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/Controllers/FiltersController.cs -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/Controllers/HomeController.cs -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/Controllers/MonitorController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/Controllers/MonitorController.cs -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/Controllers/PageRouteController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/Controllers/PageRouteController.cs -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/Controllers/RoutingController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/Controllers/RoutingController.cs -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/Controllers/SqlDataController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/Controllers/SqlDataController.cs -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/Controllers/TempDataController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/Controllers/TempDataController.cs -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/Controllers/TestingController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/Controllers/TestingController.cs -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/Controllers/UsersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/Controllers/UsersController.cs -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/Filters/RequestIdService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/Filters/RequestIdService.cs -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/Filters/ServiceActionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/Filters/ServiceActionFilter.cs -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/Filters/TestExceptionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/Filters/TestExceptionFilter.cs -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/Filters/TraceOutputResultFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/Filters/TraceOutputResultFilter.cs -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/Filters/TraceResourceFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/Filters/TraceResourceFilter.cs -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/Formatters/CustomFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/Formatters/CustomFormatter.cs -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/Formatters/PlainTextFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/Formatters/PlainTextFormatter.cs -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/Formatters/VCardFormatter_V3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/Formatters/VCardFormatter_V3.cs -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/Formatters/VCardFormatter_V4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/Formatters/VCardFormatter_V4.cs -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/LocalizationPipeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/LocalizationPipeline.cs -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/ManagerHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/ManagerHandler.cs -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/Models/Contact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/Models/Contact.cs -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/Models/GenderType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/Models/GenderType.cs -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/Models/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/Models/LoginViewModel.cs -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/Models/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/Models/Person.cs -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/Models/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/Models/Product.cs -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/Models/Product_Json.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/Models/Product_Json.cs -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/Models/Product_Xml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/Models/Product_Xml.cs -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/Models/Product_text.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/Models/Product_text.cs -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/Models/RemoteAttributeUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/Models/RemoteAttributeUser.cs -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/Models/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/Models/User.cs -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/Operations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/Operations.cs -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/Program.cs -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/RequestIdMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/RequestIdMiddleware.cs -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/RequestIdViewComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/RequestIdViewComponent.cs -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/RequestScopedActionConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/RequestScopedActionConstraint.cs -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/RequestScopedFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/RequestScopedFilter.cs -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/RequestScopedTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/RequestScopedTagHelper.cs -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/Startup.cs -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/StartupRequestLimitSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/StartupRequestLimitSize.cs -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/StartupWithEndpointRouting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/StartupWithEndpointRouting.cs -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/StoreIntoTempDataActionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/StoreIntoTempDataActionResult.cs -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/Views/Antiforgery/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/Views/Antiforgery/Index.cshtml -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/Views/Antiforgery/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/Views/Antiforgery/Login.cshtml -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/Views/Antiforgery/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/Views/Antiforgery/_Layout.cshtml -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/Views/Home/ActionLinkView.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/Views/Home/ActionLinkView.cshtml -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/Views/Home/CSharp7View.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/Views/Home/CSharp7View.cshtml -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/Views/Home/JsonHelperInView.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/Views/Home/JsonHelperInView.cshtml -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/Views/Home/PlainView.cshtml: -------------------------------------------------------------------------------- 1 | Plain View -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/Views/PageRoute/AttributeRouteView.cshtml: -------------------------------------------------------------------------------- 1 | AttributeRoute - Hello from @ViewBag.Page 2 | -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/Views/PageRoute/ConventionalRouteView.cshtml: -------------------------------------------------------------------------------- 1 | ConventionalRoute - Hello from @ViewBag.Page 2 | -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/Views/RequestScopedService/ViewComponent.cshtml: -------------------------------------------------------------------------------- 1 | @await Component.InvokeAsync("RequestId") -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/Views/Shared/Components/PassThrough/Default.cshtml: -------------------------------------------------------------------------------- 1 | @model long 2 |

The passed through value was: @Model

-------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/Views/TempData/DisplayTempData.cshtml: -------------------------------------------------------------------------------- 1 | @TempData["key"] -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/Views/TempData/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/Views/TempData/Index.cshtml -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/VndErrorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/VndErrorAttribute.cs -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/_bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/_bower.json -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/_bower.readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/_bower.readme -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/_gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/_gruntfile.js -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/_package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/_package.json -------------------------------------------------------------------------------- /test/WebSites/BasicWebSite/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/BasicWebSite/readme.md -------------------------------------------------------------------------------- /test/WebSites/Common/TestResponseGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/Common/TestResponseGenerator.cs -------------------------------------------------------------------------------- /test/WebSites/ControllersFromServicesWebSite/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/ControllersFromServicesWebSite/Startup.cs -------------------------------------------------------------------------------- /test/WebSites/ControllersFromServicesWebSite/ValueService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/ControllersFromServicesWebSite/ValueService.cs -------------------------------------------------------------------------------- /test/WebSites/ControllersFromServicesWebSite/ViewData.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/ControllersFromServicesWebSite/ViewData.cshtml -------------------------------------------------------------------------------- /test/WebSites/ControllersFromServicesWebSite/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/ControllersFromServicesWebSite/readme.md -------------------------------------------------------------------------------- /test/WebSites/CorsWebSite/Controllers/BlogController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/CorsWebSite/Controllers/BlogController.cs -------------------------------------------------------------------------------- /test/WebSites/CorsWebSite/Controllers/CustomerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/CorsWebSite/Controllers/CustomerController.cs -------------------------------------------------------------------------------- /test/WebSites/CorsWebSite/Controllers/StoreController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/CorsWebSite/Controllers/StoreController.cs -------------------------------------------------------------------------------- /test/WebSites/CorsWebSite/CorsWebSite.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/CorsWebSite/CorsWebSite.csproj -------------------------------------------------------------------------------- /test/WebSites/CorsWebSite/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/CorsWebSite/Program.cs -------------------------------------------------------------------------------- /test/WebSites/CorsWebSite/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/CorsWebSite/Startup.cs -------------------------------------------------------------------------------- /test/WebSites/CorsWebSite/StartupWith21Compat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/CorsWebSite/StartupWith21Compat.cs -------------------------------------------------------------------------------- /test/WebSites/CorsWebSite/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/CorsWebSite/readme.md -------------------------------------------------------------------------------- /test/WebSites/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/Directory.Build.props -------------------------------------------------------------------------------- /test/WebSites/ErrorPageMiddlewareWebSite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/ErrorPageMiddlewareWebSite/README.md -------------------------------------------------------------------------------- /test/WebSites/ErrorPageMiddlewareWebSite/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/ErrorPageMiddlewareWebSite/Startup.cs -------------------------------------------------------------------------------- /test/WebSites/ErrorPageMiddlewareWebSite/Views/ErrorFromViewImports/Index.cshtml: -------------------------------------------------------------------------------- 1 |

Hello world!

-------------------------------------------------------------------------------- /test/WebSites/ErrorPageMiddlewareWebSite/Views/ErrorFromViewImports/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using NamespaceDoesNotExist -------------------------------------------------------------------------------- /test/WebSites/ErrorPageMiddlewareWebSite/Views/ErrorPageMiddleware/CompilationFailure.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | string x = 10; 3 | } -------------------------------------------------------------------------------- /test/WebSites/ErrorPageMiddlewareWebSite/Views/ErrorPageMiddleware/RuntimeError.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | throw new Exception("Error from view"); 3 | } -------------------------------------------------------------------------------- /test/WebSites/FSharpWebSite/Controllers/HomeController.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/FSharpWebSite/Controllers/HomeController.fs -------------------------------------------------------------------------------- /test/WebSites/FSharpWebSite/FSharpWebSite.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/FSharpWebSite/FSharpWebSite.fsproj -------------------------------------------------------------------------------- /test/WebSites/FSharpWebSite/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/FSharpWebSite/Program.fs -------------------------------------------------------------------------------- /test/WebSites/FSharpWebSite/Startup.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/FSharpWebSite/Startup.fs -------------------------------------------------------------------------------- /test/WebSites/FSharpWebSite/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/FSharpWebSite/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /test/WebSites/FSharpWebSite/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/FSharpWebSite/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /test/WebSites/FSharpWebSite/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using FSharpWebSite 2 | -------------------------------------------------------------------------------- /test/WebSites/FSharpWebSite/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/FSharpWebSite/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /test/WebSites/FilesWebSite/EmbeddedResources/Greetings.txt: -------------------------------------------------------------------------------- 1 | Sample text file as embedded resource. -------------------------------------------------------------------------------- /test/WebSites/FilesWebSite/FilesWebSite.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/FilesWebSite/FilesWebSite.csproj -------------------------------------------------------------------------------- /test/WebSites/FilesWebSite/Models/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/FilesWebSite/Models/Product.cs -------------------------------------------------------------------------------- /test/WebSites/FilesWebSite/Models/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/FilesWebSite/Models/User.cs -------------------------------------------------------------------------------- /test/WebSites/FilesWebSite/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/FilesWebSite/Startup.cs -------------------------------------------------------------------------------- /test/WebSites/FilesWebSite/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/FilesWebSite/readme.md -------------------------------------------------------------------------------- /test/WebSites/FilesWebSite/sample.txt: -------------------------------------------------------------------------------- 1 | This is a sample text file -------------------------------------------------------------------------------- /test/WebSites/FormatterWebSite/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/FormatterWebSite/Controllers/HomeController.cs -------------------------------------------------------------------------------- /test/WebSites/FormatterWebSite/FormatterWebSite.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/FormatterWebSite/FormatterWebSite.csproj -------------------------------------------------------------------------------- /test/WebSites/FormatterWebSite/IModelConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/FormatterWebSite/IModelConverter.cs -------------------------------------------------------------------------------- /test/WebSites/FormatterWebSite/Models/BaseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/FormatterWebSite/Models/BaseModel.cs -------------------------------------------------------------------------------- /test/WebSites/FormatterWebSite/Models/DerivedDummyClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/FormatterWebSite/Models/DerivedDummyClass.cs -------------------------------------------------------------------------------- /test/WebSites/FormatterWebSite/Models/DerivedModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/FormatterWebSite/Models/DerivedModel.cs -------------------------------------------------------------------------------- /test/WebSites/FormatterWebSite/Models/Developer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/FormatterWebSite/Models/Developer.cs -------------------------------------------------------------------------------- /test/WebSites/FormatterWebSite/Models/DummyClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/FormatterWebSite/Models/DummyClass.cs -------------------------------------------------------------------------------- /test/WebSites/FormatterWebSite/Models/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/FormatterWebSite/Models/Employee.cs -------------------------------------------------------------------------------- /test/WebSites/FormatterWebSite/Models/ErrorInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/FormatterWebSite/Models/ErrorInfo.cs -------------------------------------------------------------------------------- /test/WebSites/FormatterWebSite/Models/IModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/FormatterWebSite/Models/IModel.cs -------------------------------------------------------------------------------- /test/WebSites/FormatterWebSite/Models/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/FormatterWebSite/Models/Person.cs -------------------------------------------------------------------------------- /test/WebSites/FormatterWebSite/Models/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/FormatterWebSite/Models/Product.cs -------------------------------------------------------------------------------- /test/WebSites/FormatterWebSite/Models/Project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/FormatterWebSite/Models/Project.cs -------------------------------------------------------------------------------- /test/WebSites/FormatterWebSite/Models/RecursiveIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/FormatterWebSite/Models/RecursiveIdentifier.cs -------------------------------------------------------------------------------- /test/WebSites/FormatterWebSite/Models/Review.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/FormatterWebSite/Models/Review.cs -------------------------------------------------------------------------------- /test/WebSites/FormatterWebSite/Models/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/FormatterWebSite/Models/User.cs -------------------------------------------------------------------------------- /test/WebSites/FormatterWebSite/PolymorphicBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/FormatterWebSite/PolymorphicBinder.cs -------------------------------------------------------------------------------- /test/WebSites/FormatterWebSite/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/FormatterWebSite/Program.cs -------------------------------------------------------------------------------- /test/WebSites/FormatterWebSite/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/FormatterWebSite/Startup.cs -------------------------------------------------------------------------------- /test/WebSites/FormatterWebSite/StringInputFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/FormatterWebSite/StringInputFormatter.cs -------------------------------------------------------------------------------- /test/WebSites/FormatterWebSite/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/FormatterWebSite/readme.md -------------------------------------------------------------------------------- /test/WebSites/HtmlGenerationWebSite/Areas/Customer/Pages/_Fallback.cshtml: -------------------------------------------------------------------------------- 1 | Hello from fallback -------------------------------------------------------------------------------- /test/WebSites/HtmlGenerationWebSite/Models/AClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/HtmlGenerationWebSite/Models/AClass.cs -------------------------------------------------------------------------------- /test/WebSites/HtmlGenerationWebSite/Models/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/HtmlGenerationWebSite/Models/Customer.cs -------------------------------------------------------------------------------- /test/WebSites/HtmlGenerationWebSite/Models/DayOfWeek.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/HtmlGenerationWebSite/Models/DayOfWeek.cs -------------------------------------------------------------------------------- /test/WebSites/HtmlGenerationWebSite/Models/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/HtmlGenerationWebSite/Models/Employee.cs -------------------------------------------------------------------------------- /test/WebSites/HtmlGenerationWebSite/Models/Folder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/HtmlGenerationWebSite/Models/Folder.cs -------------------------------------------------------------------------------- /test/WebSites/HtmlGenerationWebSite/Models/Gender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/HtmlGenerationWebSite/Models/Gender.cs -------------------------------------------------------------------------------- /test/WebSites/HtmlGenerationWebSite/Models/Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/HtmlGenerationWebSite/Models/Item.cs -------------------------------------------------------------------------------- /test/WebSites/HtmlGenerationWebSite/Models/Month.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/HtmlGenerationWebSite/Models/Month.cs -------------------------------------------------------------------------------- /test/WebSites/HtmlGenerationWebSite/Models/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/HtmlGenerationWebSite/Models/Order.cs -------------------------------------------------------------------------------- /test/WebSites/HtmlGenerationWebSite/Models/PartialModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/HtmlGenerationWebSite/Models/PartialModel.cs -------------------------------------------------------------------------------- /test/WebSites/HtmlGenerationWebSite/Models/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/HtmlGenerationWebSite/Models/Person.cs -------------------------------------------------------------------------------- /test/WebSites/HtmlGenerationWebSite/Models/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/HtmlGenerationWebSite/Models/Product.cs -------------------------------------------------------------------------------- /test/WebSites/HtmlGenerationWebSite/Models/SuperViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/HtmlGenerationWebSite/Models/SuperViewModel.cs -------------------------------------------------------------------------------- /test/WebSites/HtmlGenerationWebSite/Models/TemplateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/HtmlGenerationWebSite/Models/TemplateModel.cs -------------------------------------------------------------------------------- /test/WebSites/HtmlGenerationWebSite/Models/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/HtmlGenerationWebSite/Models/ViewModel.cs -------------------------------------------------------------------------------- /test/WebSites/HtmlGenerationWebSite/Models/Warehouse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/HtmlGenerationWebSite/Models/Warehouse.cs -------------------------------------------------------------------------------- /test/WebSites/HtmlGenerationWebSite/Models/WeirdModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/HtmlGenerationWebSite/Models/WeirdModel.cs -------------------------------------------------------------------------------- /test/WebSites/HtmlGenerationWebSite/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/HtmlGenerationWebSite/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /test/WebSites/HtmlGenerationWebSite/ProductsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/HtmlGenerationWebSite/ProductsService.cs -------------------------------------------------------------------------------- /test/WebSites/HtmlGenerationWebSite/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/HtmlGenerationWebSite/Startup.cs -------------------------------------------------------------------------------- /test/WebSites/HtmlGenerationWebSite/TestCacheTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/HtmlGenerationWebSite/TestCacheTagHelper.cs -------------------------------------------------------------------------------- /test/WebSites/HtmlGenerationWebSite/Views/Shared/_Partial.cshtml: -------------------------------------------------------------------------------- 1 | Hello from partial 2 | -------------------------------------------------------------------------------- /test/WebSites/HtmlGenerationWebSite/appRoot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/HtmlGenerationWebSite/appRoot.css -------------------------------------------------------------------------------- /test/WebSites/HtmlGenerationWebSite/appRoot.js: -------------------------------------------------------------------------------- 1 | alert("ERROR!! This should never be loaded"); -------------------------------------------------------------------------------- /test/WebSites/HtmlGenerationWebSite/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/HtmlGenerationWebSite/readme.md -------------------------------------------------------------------------------- /test/WebSites/HtmlGenerationWebSite/wwwroot/images/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/HtmlGenerationWebSite/wwwroot/images/red.png -------------------------------------------------------------------------------- /test/WebSites/HtmlGenerationWebSite/wwwroot/styles/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/HtmlGenerationWebSite/wwwroot/styles/site.css -------------------------------------------------------------------------------- /test/WebSites/HtmlGenerationWebSite/wwwroot/styles/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/HtmlGenerationWebSite/wwwroot/styles/site.js -------------------------------------------------------------------------------- /test/WebSites/HtmlGenerationWebSite/wwwroot/styles/sub/site3.js: -------------------------------------------------------------------------------- 1 | alert("ERROR!! This should never be loaded"); -------------------------------------------------------------------------------- /test/WebSites/RazorBuildWebSite.Views/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorBuildWebSite.Views/AssemblyInfo.cs -------------------------------------------------------------------------------- /test/WebSites/RazorBuildWebSite.Views/Pages/Rzc/Page.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorBuildWebSite.Views/Pages/Rzc/Page.cs -------------------------------------------------------------------------------- /test/WebSites/RazorBuildWebSite.Views/Pages/Rzc/Page_Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorBuildWebSite.Views/Pages/Rzc/Page_Model.cs -------------------------------------------------------------------------------- /test/WebSites/RazorBuildWebSite.Views/Views/Rzc/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorBuildWebSite.Views/Views/Rzc/View.cs -------------------------------------------------------------------------------- /test/WebSites/RazorBuildWebSite/Controllers/RzcController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorBuildWebSite/Controllers/RzcController.cs -------------------------------------------------------------------------------- /test/WebSites/RazorBuildWebSite/Pages/Rzc/Page.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorBuildWebSite/Pages/Rzc/Page.cshtml -------------------------------------------------------------------------------- /test/WebSites/RazorBuildWebSite/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @namespace RazorBuildWebSite.Pages -------------------------------------------------------------------------------- /test/WebSites/RazorBuildWebSite/RazorBuildWebSite.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorBuildWebSite/RazorBuildWebSite.csproj -------------------------------------------------------------------------------- /test/WebSites/RazorBuildWebSite/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorBuildWebSite/Startup.cs -------------------------------------------------------------------------------- /test/WebSites/RazorBuildWebSite/Views/Rzc/View.cshtml: -------------------------------------------------------------------------------- 1 | Hello from runtime-compiled rzc view! -------------------------------------------------------------------------------- /test/WebSites/RazorBuildWebSite/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @namespace RazorBuildWebSite.Views -------------------------------------------------------------------------------- /test/WebSites/RazorBuildWebSite/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorBuildWebSite/readme.md -------------------------------------------------------------------------------- /test/WebSites/RazorPagesClassLibrary/ClassLibraryStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorPagesClassLibrary/ClassLibraryStartup.cs -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Areas/Accounts/Pages/About.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | Hello from a page in Accounts area 3 | -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Areas/Accounts/Pages/Manage/_PartialInManage.cshtml: -------------------------------------------------------------------------------- 1 | Partial in /Areas/Accounts/Pages/Manage/ 2 | -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Areas/Accounts/Pages/RequiresAuth/AllowAnonymous.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | Hello from AllowAnonymous 3 | -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Areas/Accounts/Pages/RequiresAuth/Index.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | @{ throw new Exception("This should not be rendered."); } 3 | -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Areas/Accounts/Pages/_PartialInAreaPagesRoot.cshtml: -------------------------------------------------------------------------------- 1 | Partial in /Areas/Accounts/Pages/ 2 | -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Areas/Accounts/Views/Shared/_PartialInAreasSharedViews.cshtml: -------------------------------------------------------------------------------- 1 | Partial in /Areas/Accounts/Views/Shared/ 2 | -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Areas/Products/Pages/List.cshtml: -------------------------------------------------------------------------------- 1 | @page "{sort?}/{top?}" -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/CustomActionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorPagesWebSite/CustomActionResult.cs -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/DefaultNamespace.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | @(GetType().Namespace) -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/HandlerTestPage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorPagesWebSite/HandlerTestPage.cshtml -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/HelloWorld.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | 3 | Hello, World! -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/HelloWorldWithAuth.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | 3 | Can't see me -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/HelloWorldWithHandler.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorPagesWebSite/HelloWorldWithHandler.cshtml -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/HelloWorldWithRoute.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorPagesWebSite/HelloWorldWithRoute.cshtml -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/InjectedPageProperties.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorPagesWebSite/InjectedPageProperties.cshtml -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/ModelAsFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorPagesWebSite/ModelAsFilter.cs -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/ModelAsFilter.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorPagesWebSite/ModelAsFilter.cshtml -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/ModelHandlerTestModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorPagesWebSite/ModelHandlerTestModel.cs -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/ModelHandlerTestPage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorPagesWebSite/ModelHandlerTestPage.cshtml -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/ModelWithAuthFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorPagesWebSite/ModelWithAuthFilter.cs -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/ModelWithAuthFilter.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorPagesWebSite/ModelWithAuthFilter.cshtml -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/ModelWithPageFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorPagesWebSite/ModelWithPageFilter.cs -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/ModelWithPageFilter.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorPagesWebSite/ModelWithPageFilter.cshtml -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/ModelWithResponseCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorPagesWebSite/ModelWithResponseCache.cs -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/ModelWithResponseCache.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorPagesWebSite/ModelWithResponseCache.cshtml -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Models/IUserModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorPagesWebSite/Models/IUserModel.cs -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Models/UserModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorPagesWebSite/Models/UserModel.cs -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/NoPage.cshtml: -------------------------------------------------------------------------------- 1 | This isn't a razor page -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/OnGetView.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorPagesWebSite/OnGetView.cshtml -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/PageWithoutContent.cshtml: -------------------------------------------------------------------------------- 1 | @page "No/Content/Path" -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Pages/Admin/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorPagesWebSite/Pages/Admin/Edit.cshtml -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Pages/Admin/Index.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | Hello from @ViewContext.RouteData.Values["page"] -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Pages/Admin/Login.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | Login Page -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Pages/Conventions/Auth.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Pages/Conventions/AuthFolder/Index.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Pages/CustomBaseType/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using RazorPagesWebSite 2 | @inherits CustomPageBase 3 | -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Pages/FileFromShared: -------------------------------------------------------------------------------- 1 | @Html.Partial("_FileInShared) -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Pages/Index.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | Hello from @ViewContext.RouteData.Values["page"] -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Pages/Localized/Page.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorPagesWebSite/Pages/Localized/Page.cshtml -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Pages/Namespace/Nested/Folder/Index.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | @(GetType().Namespace) -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Pages/NotTheRoot.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | Hello from NotTheRoot 3 | -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Pages/PropertyBinding/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using RazorPagesWebSite 2 | -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Pages/Redirects/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorPagesWebSite/Pages/Redirects/Index.cshtml -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Pages/Redirects/Redirect.cshtml: -------------------------------------------------------------------------------- 1 | @page "{id:int}" 2 | -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Pages/Redirects/SubDir/SubDirPage.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Pages/Routes/Sibling.cshtml: -------------------------------------------------------------------------------- 1 | @page "{id?}" 2 | -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Pages/SearchInPages.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | @Html.Partial("_FileInShared") -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Pages/Section/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorPagesWebSite/Pages/Section/Index.cshtml -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Pages/Section/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorPagesWebSite/Pages/Section/_Layout.cshtml -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Pages/Shared/_FileInShared.cshtml: -------------------------------------------------------------------------------- 1 | Hello from /Pages/Shared/ 2 | -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Pages/TagHelper/SubDir/SubDirPage.cshtml: -------------------------------------------------------------------------------- 1 | @page "{id?}" 2 | -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Pages/TryUpdateModel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorPagesWebSite/Pages/TryUpdateModel.cshtml -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Pages/TryValidateModel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorPagesWebSite/Pages/TryValidateModel.cshtml -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Pages/ViewData/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorPagesWebSite/Pages/ViewData/_Layout.cshtml -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Pages/ViewSearch/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorPagesWebSite/Pages/ViewSearch/Index.cshtml -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Pages/ViewSearch/_Sibling.cshtml: -------------------------------------------------------------------------------- 1 | Hello from sibling -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Pages/WithViewImport/Index.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | Hello from @CustomService.Value! -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Pages/WithViewImport/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using CustomNamespace -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Pages/WithViewStart/Index.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | Hello from @Path! -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Pages/WithViewStart/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | Hello from _ViewStart 2 | -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Pages/_Parent.cshtml: -------------------------------------------------------------------------------- 1 | Hello from parent -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorPagesWebSite/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/PathSet.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | 3 | Path: @Path -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/PolymorphicModelBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorPagesWebSite/PolymorphicModelBinder.cs -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorPagesWebSite/Program.cs -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/RazorPagesWebSite.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorPagesWebSite/RazorPagesWebSite.csproj -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/RedirectToController.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorPagesWebSite/RedirectToController.cshtml -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/RenderPartialWithModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorPagesWebSite/RenderPartialWithModel.cs -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/RenderPartialWithModel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorPagesWebSite/RenderPartialWithModel.cshtml -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/RouteData.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorPagesWebSite/RouteData.cshtml -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Services/CustomService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorPagesWebSite/Services/CustomService.cs -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Show.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/SimpleForms.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorPagesWebSite/SimpleForms.cshtml -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorPagesWebSite/Startup.cs -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/StartupWithBasePath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorPagesWebSite/StartupWithBasePath.cs -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/TagHelpers.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorPagesWebSite/TagHelpers.cshtml -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/TempData/ShowMessage.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | 3 | @(TempData["Message"]) -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/TempData/TempDataPageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorPagesWebSite/TempData/TempDataPageModel.cs -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Views/Shared/_FileInShared.cshtml: -------------------------------------------------------------------------------- 1 | @{ throw new Exception("This file should not be processed"); } -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Views/Shared/_GlobalLayout.cshtml: -------------------------------------------------------------------------------- 1 | Layout in /Views/Shared 2 | @RenderBody() 3 | -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Views/Shared/_PartialWithoutModel.cshtml: -------------------------------------------------------------------------------- 1 | Welcome, Guest -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/Views/Shared/_Shared.cshtml: -------------------------------------------------------------------------------- 1 | Hello from shared -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/_Root.cshtml: -------------------------------------------------------------------------------- 1 | Hello from root -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorPagesWebSite/_ViewStart.cshtml -------------------------------------------------------------------------------- /test/WebSites/RazorPagesWebSite/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorPagesWebSite/readme.md -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/Components/ComponentWithLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorWebSite/Components/ComponentWithLayout.cs -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/Controllers/BackSlashController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorWebSite/Controllers/BackSlashController.cs -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/Controllers/FlushPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorWebSite/Controllers/FlushPoint.cs -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/Controllers/TemplateExpander.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorWebSite/Controllers/TemplateExpander.cs -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/EmbeddedResources/Views/EmbeddedShared/_Partial.cshtml: -------------------------------------------------------------------------------- 1 | Hello from EmbeddedShared/_Partial -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/EmbeddedResources/Views/Shared/_EmbeddedPartial.cshtml: -------------------------------------------------------------------------------- 1 | Hello from Shared/_EmbeddedPartial -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/Models/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorWebSite/Models/Address.cs -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/Models/EnumModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorWebSite/Models/EnumModel.cs -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/Models/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorWebSite/Models/Person.cs -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/MyBasePage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorWebSite/MyBasePage.cs -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/NestedViewImportsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorWebSite/NestedViewImportsController.cs -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- 1 | @{ throw new Exception("This file should not be processed"); } -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/Pages/Shared/_SharedFromPages.cshtml: -------------------------------------------------------------------------------- 1 | Hello from Pages/Shared 2 | -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorWebSite/Program.cs -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/RazorWebSite.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorWebSite/RazorWebSite.csproj -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/Resources/Models/ModelEnum.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorWebSite/Resources/Models/ModelEnum.resx -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/Resources/SingleType.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorWebSite/Resources/SingleType.resx -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/Services/BackSlashExpander.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorWebSite/Services/BackSlashExpander.cs -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/Services/InjectedHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorWebSite/Services/InjectedHelper.cs -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/Services/TaskReturningService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorWebSite/Services/TaskReturningService.cs -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/Services/UpdateableFileProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorWebSite/Services/UpdateableFileProvider.cs -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/SingleType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorWebSite/SingleType.cs -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorWebSite/Startup.cs -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/StartupDataAnnotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorWebSite/StartupDataAnnotations.cs -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/Views/BackSlash/_BackSlashPartial.cshtml: -------------------------------------------------------------------------------- 1 | Partial -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/Views/BackSlash/_Layout.cshtml: -------------------------------------------------------------------------------- 1 | Layout 2 | @RenderBody() -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/Views/Directives/Scoped/ViewInheritsBasePageFromViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @MyHelper.Greet(Model) -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/Views/Directives/Scoped/_Layout.cshtml: -------------------------------------------------------------------------------- 1 | layout:@RenderBody() -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/Views/Directives/ViewInheritsInjectAndUsingsFromViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @model MyPerson 2 | @MyHelper.Greet(Model) -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/Views/Enum/Enum.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorWebSite/Views/Enum/Enum.cshtml -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/Views/ExpanderViews/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorWebSite/Views/ExpanderViews/Index.cshtml -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/Views/InheritingInherits/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @inherits MyBasePage -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/Views/NestedViewImports/Nested/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @model Person 2 | -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/Views/NestedViewStarts/NestedViewStarts/Index.cshtml: -------------------------------------------------------------------------------- 1 | index-content -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/Views/PartialViewEngine/ViewWithDataFromController.cshtml: -------------------------------------------------------------------------------- 1 |

@ViewData["data-from-controller"]

-------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/Views/PartialViewEngine/ViewWithoutLayout.cshtml: -------------------------------------------------------------------------------- 1 | ViewWithoutLayout-Content -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/Views/PartialsWithLayout/PartialThatDoesNotSpecifyLayout.cshtml: -------------------------------------------------------------------------------- 1 | Partial that does not specify Layout -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/Views/Shared/Components/ComponentWithViewStart/Default.cshtml: -------------------------------------------------------------------------------- 1 | @ViewBag.Title -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorWebSite/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/Views/Shared/_Partial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorWebSite/Views/Shared/_Partial.cshtml -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/Views/Shared/_PartialLayout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorWebSite/Views/Shared/_PartialLayout.cshtml -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/Views/Shared/_PartialWithModelFromEnumerable.cshtml: -------------------------------------------------------------------------------- 1 | @model Person 2 | @Html.DisplayFor(m => m.Name) -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/Views/TemplateExpander/_Partial.cshtml: -------------------------------------------------------------------------------- 1 | expander-partial -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/Views/TemplateExpander/en-GB/_Partial.cshtml: -------------------------------------------------------------------------------- 1 | gb-partial -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/Views/TemplateExpander/fr/_Partial.cshtml: -------------------------------------------------------------------------------- 1 | fr-partial -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/Views/UrlResolution/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorWebSite/Views/UrlResolution/Index.cshtml -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/Views/ViewEngine/SearchInPages.cshtml: -------------------------------------------------------------------------------- 1 | @Html.Partial("_SharedFromPages") 2 | -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/Views/ViewEngine/ViewWithDataFromController.cshtml: -------------------------------------------------------------------------------- 1 |

@ViewData["data-from-controller"]

-------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/Views/ViewEngine/ViewWithoutLayout.cshtml: -------------------------------------------------------------------------------- 1 | ViewWithoutLayout-Content -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/Views/ViewNameSpecification_Home/LayoutSpecifiedWithPartialPathInViewStart.cshtml: -------------------------------------------------------------------------------- 1 | _ViewStart that specifies partial Layout -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/Views/ViewNameSpecification_Home/NonSharedPartial.cshtml: -------------------------------------------------------------------------------- 1 | Non Shared Partial -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/Views/ViewWithPaths/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorWebSite/Views/ViewWithPaths/Index.cshtml -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/Views/ViewWithPaths/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorWebSite/Views/ViewWithPaths/_Layout.cshtml -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using RazorWebSite -------------------------------------------------------------------------------- /test/WebSites/RazorWebSite/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RazorWebSite/readme.md -------------------------------------------------------------------------------- /test/WebSites/RoutingWebSite/Areas/Admin/LG3Controller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RoutingWebSite/Areas/Admin/LG3Controller.cs -------------------------------------------------------------------------------- /test/WebSites/RoutingWebSite/Areas/Order/OrderController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RoutingWebSite/Areas/Order/OrderController.cs -------------------------------------------------------------------------------- /test/WebSites/RoutingWebSite/Controllers/BlogController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RoutingWebSite/Controllers/BlogController.cs -------------------------------------------------------------------------------- /test/WebSites/RoutingWebSite/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RoutingWebSite/Controllers/HomeController.cs -------------------------------------------------------------------------------- /test/WebSites/RoutingWebSite/Controllers/LG1Controller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RoutingWebSite/Controllers/LG1Controller.cs -------------------------------------------------------------------------------- /test/WebSites/RoutingWebSite/Controllers/LG2Controller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RoutingWebSite/Controllers/LG2Controller.cs -------------------------------------------------------------------------------- /test/WebSites/RoutingWebSite/Controllers/MapsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RoutingWebSite/Controllers/MapsController.cs -------------------------------------------------------------------------------- /test/WebSites/RoutingWebSite/Controllers/TeamController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RoutingWebSite/Controllers/TeamController.cs -------------------------------------------------------------------------------- /test/WebSites/RoutingWebSite/HttpMergeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RoutingWebSite/HttpMergeAttribute.cs -------------------------------------------------------------------------------- /test/WebSites/RoutingWebSite/Pages/Edit.cshtml: -------------------------------------------------------------------------------- 1 | @page "{id}" 2 | 3 | Hello from Edit page 4 | -------------------------------------------------------------------------------- /test/WebSites/RoutingWebSite/Pages/LGAnotherPage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RoutingWebSite/Pages/LGAnotherPage.cshtml -------------------------------------------------------------------------------- /test/WebSites/RoutingWebSite/Pages/LGAnotherPage.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RoutingWebSite/Pages/LGAnotherPage.cshtml.cs -------------------------------------------------------------------------------- /test/WebSites/RoutingWebSite/Pages/LGPage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RoutingWebSite/Pages/LGPage.cshtml -------------------------------------------------------------------------------- /test/WebSites/RoutingWebSite/Pages/LGPage.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RoutingWebSite/Pages/LGPage.cshtml.cs -------------------------------------------------------------------------------- /test/WebSites/RoutingWebSite/Pages/PageRouteTransformer/Index.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | -------------------------------------------------------------------------------- /test/WebSites/RoutingWebSite/Pages/PageRouteTransformer/PageWithConfiguredRoute.cshtml: -------------------------------------------------------------------------------- 1 | @page "ExtraPath/{id?}" 2 | Hello from @ViewContext.RouteData.Values["id"] -------------------------------------------------------------------------------- /test/WebSites/RoutingWebSite/Pages/PageRouteTransformer/TestPage.cshtml: -------------------------------------------------------------------------------- 1 | @page "ExtraPath/{id?}" 2 | Hello from @ViewContext.RouteData.Values["id"] -------------------------------------------------------------------------------- /test/WebSites/RoutingWebSite/Pages/PageWithLinks.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RoutingWebSite/Pages/PageWithLinks.cshtml -------------------------------------------------------------------------------- /test/WebSites/RoutingWebSite/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RoutingWebSite/Program.cs -------------------------------------------------------------------------------- /test/WebSites/RoutingWebSite/RoutingWebSite.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RoutingWebSite/RoutingWebSite.csproj -------------------------------------------------------------------------------- /test/WebSites/RoutingWebSite/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RoutingWebSite/Startup.cs -------------------------------------------------------------------------------- /test/WebSites/RoutingWebSite/StartupForLinkGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RoutingWebSite/StartupForLinkGenerator.cs -------------------------------------------------------------------------------- /test/WebSites/RoutingWebSite/StartupWith21Compat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RoutingWebSite/StartupWith21Compat.cs -------------------------------------------------------------------------------- /test/WebSites/RoutingWebSite/TestParameterTransformer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RoutingWebSite/TestParameterTransformer.cs -------------------------------------------------------------------------------- /test/WebSites/RoutingWebSite/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/RoutingWebSite/readme.md -------------------------------------------------------------------------------- /test/WebSites/SecurityWebSite/CountingPolicyEvaluator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/SecurityWebSite/CountingPolicyEvaluator.cs -------------------------------------------------------------------------------- /test/WebSites/SecurityWebSite/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/SecurityWebSite/Program.cs -------------------------------------------------------------------------------- /test/WebSites/SecurityWebSite/SecurityWebSite.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/SecurityWebSite/SecurityWebSite.csproj -------------------------------------------------------------------------------- /test/WebSites/SecurityWebSite/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/SecurityWebSite/Startup.cs -------------------------------------------------------------------------------- /test/WebSites/SecurityWebSite/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/SecurityWebSite/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /test/WebSites/SecurityWebSite/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/SecurityWebSite/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /test/WebSites/SecurityWebSite/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/SecurityWebSite/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /test/WebSites/SecurityWebSite/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/SecurityWebSite/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /test/WebSites/SecurityWebSite/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/SecurityWebSite/appsettings.json -------------------------------------------------------------------------------- /test/WebSites/SimpleWebSite/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/SimpleWebSite/Controllers/HomeController.cs -------------------------------------------------------------------------------- /test/WebSites/SimpleWebSite/SimpleWebSite.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/SimpleWebSite/SimpleWebSite.csproj -------------------------------------------------------------------------------- /test/WebSites/SimpleWebSite/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/SimpleWebSite/Startup.cs -------------------------------------------------------------------------------- /test/WebSites/SimpleWebSite/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/SimpleWebSite/readme.md -------------------------------------------------------------------------------- /test/WebSites/TagHelpersWebSite/Components/JacketColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/TagHelpersWebSite/Components/JacketColor.cs -------------------------------------------------------------------------------- /test/WebSites/TagHelpersWebSite/Models/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/TagHelpersWebSite/Models/Employee.cs -------------------------------------------------------------------------------- /test/WebSites/TagHelpersWebSite/Models/WebsiteContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/TagHelpersWebSite/Models/WebsiteContext.cs -------------------------------------------------------------------------------- /test/WebSites/TagHelpersWebSite/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/TagHelpersWebSite/Startup.cs -------------------------------------------------------------------------------- /test/WebSites/TagHelpersWebSite/TagHelpers/ATagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/TagHelpersWebSite/TagHelpers/ATagHelper.cs -------------------------------------------------------------------------------- /test/WebSites/TagHelpersWebSite/TagHelpersWebSite.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/TagHelpersWebSite/TagHelpersWebSite.csproj -------------------------------------------------------------------------------- /test/WebSites/TagHelpersWebSite/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/TagHelpersWebSite/Views/Home/About.cshtml -------------------------------------------------------------------------------- /test/WebSites/TagHelpersWebSite/Views/Home/Help.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/TagHelpersWebSite/Views/Home/Help.cshtml -------------------------------------------------------------------------------- /test/WebSites/TagHelpersWebSite/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/TagHelpersWebSite/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /test/WebSites/TagHelpersWebSite/Views/InheritedTagHelperPrefix/NestedInheritedTagHelperPrefix/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @tagHelperPrefix nested- 2 | -------------------------------------------------------------------------------- /test/WebSites/TagHelpersWebSite/Views/InheritedTagHelperPrefix/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @tagHelperPrefix inherited: 2 | -------------------------------------------------------------------------------- /test/WebSites/TagHelpersWebSite/Views/RemoveDefaultInheritedTagHelpers/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @removeTagHelper *, Microsoft.AspNetCore.Mvc.Razor -------------------------------------------------------------------------------- /test/WebSites/TagHelpersWebSite/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/TagHelpersWebSite/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /test/WebSites/TagHelpersWebSite/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/TagHelpersWebSite/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /test/WebSites/TagHelpersWebSite/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/TagHelpersWebSite/readme.md -------------------------------------------------------------------------------- /test/WebSites/VersioningWebSite/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/VersioningWebSite/Program.cs -------------------------------------------------------------------------------- /test/WebSites/VersioningWebSite/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/VersioningWebSite/Startup.cs -------------------------------------------------------------------------------- /test/WebSites/VersioningWebSite/StartupWith21Compat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/VersioningWebSite/StartupWith21Compat.cs -------------------------------------------------------------------------------- /test/WebSites/VersioningWebSite/VersionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/VersioningWebSite/VersionAttribute.cs -------------------------------------------------------------------------------- /test/WebSites/VersioningWebSite/VersionDeleteAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/VersioningWebSite/VersionDeleteAttribute.cs -------------------------------------------------------------------------------- /test/WebSites/VersioningWebSite/VersionGetAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/VersioningWebSite/VersionGetAttribute.cs -------------------------------------------------------------------------------- /test/WebSites/VersioningWebSite/VersionPostAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/VersioningWebSite/VersionPostAttribute.cs -------------------------------------------------------------------------------- /test/WebSites/VersioningWebSite/VersionPutAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/VersioningWebSite/VersionPutAttribute.cs -------------------------------------------------------------------------------- /test/WebSites/VersioningWebSite/VersionRangeValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/VersioningWebSite/VersionRangeValidator.cs -------------------------------------------------------------------------------- /test/WebSites/VersioningWebSite/VersionRouteAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/VersioningWebSite/VersionRouteAttribute.cs -------------------------------------------------------------------------------- /test/WebSites/VersioningWebSite/VersioningWebSite.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/VersioningWebSite/VersioningWebSite.csproj -------------------------------------------------------------------------------- /test/WebSites/VersioningWebSite/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/VersioningWebSite/readme.md -------------------------------------------------------------------------------- /test/WebSites/WebApiCompatShimWebSite/Models/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/WebApiCompatShimWebSite/Models/Employee.cs -------------------------------------------------------------------------------- /test/WebSites/WebApiCompatShimWebSite/Models/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/WebApiCompatShimWebSite/Models/User.cs -------------------------------------------------------------------------------- /test/WebSites/WebApiCompatShimWebSite/Models/UserKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/WebApiCompatShimWebSite/Models/UserKind.cs -------------------------------------------------------------------------------- /test/WebSites/WebApiCompatShimWebSite/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/WebApiCompatShimWebSite/Startup.cs -------------------------------------------------------------------------------- /test/WebSites/WebApiCompatShimWebSite/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/WebApiCompatShimWebSite/readme.md -------------------------------------------------------------------------------- /test/WebSites/XmlFormattersWebSite/Models/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/XmlFormattersWebSite/Models/Address.cs -------------------------------------------------------------------------------- /test/WebSites/XmlFormattersWebSite/Models/DummyClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/XmlFormattersWebSite/Models/DummyClass.cs -------------------------------------------------------------------------------- /test/WebSites/XmlFormattersWebSite/Models/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/XmlFormattersWebSite/Models/Employee.cs -------------------------------------------------------------------------------- /test/WebSites/XmlFormattersWebSite/Models/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/XmlFormattersWebSite/Models/Person.cs -------------------------------------------------------------------------------- /test/WebSites/XmlFormattersWebSite/Models/Store.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/XmlFormattersWebSite/Models/Store.cs -------------------------------------------------------------------------------- /test/WebSites/XmlFormattersWebSite/PersonWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/XmlFormattersWebSite/PersonWrapper.cs -------------------------------------------------------------------------------- /test/WebSites/XmlFormattersWebSite/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/XmlFormattersWebSite/Startup.cs -------------------------------------------------------------------------------- /test/WebSites/XmlFormattersWebSite/StartupWith21Compat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/XmlFormattersWebSite/StartupWith21Compat.cs -------------------------------------------------------------------------------- /test/WebSites/XmlFormattersWebSite/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/test/WebSites/XmlFormattersWebSite/readme.md -------------------------------------------------------------------------------- /version.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/Mvc/HEAD/version.props --------------------------------------------------------------------------------