aspnetcore/src/Components
Ryan Nowak d794c52c75
Make RouteAttribute non-inherited (#10236)
* Make RouteAttribute non-inherited

Fixes: #5529

Inheriting and looking for inherited route attributes will cause nothing
but trouble. We had a bug tracking what to do about this and we decided
to make it really clear that routes are not inherited.

Previously the attribute was marked as inherited, but we woulnd't look
for inherited routes.

* add test
2019-05-14 15:37:17 -07:00
..
Analyzers
Blazor Fix #10185 remove .NET framework requirement from VSIX 2019-05-14 07:39:33 -07:00
Browser Fix components event dispatch ordering + E2E test fixes (#10112) 2019-05-09 18:32:26 +01:00
Browser.JS
Components Make RouteAttribute non-inherited (#10236) 2019-05-14 15:37:17 -07:00
Server Fix #6764 EndpointConventionBuilder API review 2019-05-09 19:38:43 -07:00
Shared
test Fix components event dispatch ordering + E2E test fixes (#10112) 2019-05-09 18:32:26 +01:00
Components.sln
Directory.Build.props
Directory.Build.targets
NuGetPackageVerifier.json
README.md
THIRD-PARTY-NOTICES.txt
build.cmd
build.sh
startvs.cmd

README.md

Blazor

Build modern, interactive web-based UIs with C# and Razor.

This folder contains the underlying components programming model that powers both server-side and client-side Blazor applications.

Blazor is a component based web UI framework. Blazor apps can run client-side in browser on WebAssembly or server-side as part of an ASP.NET Core app. Blazor is a full single-page application (SPA) framework inspired by the latest JavaScript SPA frameworks, featuring support for offline/PWA applications, app size trimming, and browser-based debugging.

Blazor uses only the latest web standards. No plugins or transpilation needed. It runs in the browser on a real .NET runtime implemented in WebAssembly that executes normal .NET assemblies.

Gitter

You can learn more about Blazor at https://blazor.net.

Getting Started

To get started with Blazor and build your first web app check out our getting started guide.