Je reçois cette erreur sur mon App.razor:
Élément de balisage trouvé avec un nom inattendu "CascadingAuthenticationState". S'il s'agit d'un composant, ajoutez une directive @using pour cet espace de noms
C'est le code que j'utilise
<CascadingAuthenticationState>
<Router AppAssembly="@typeof(Program).Assembly">
<Found Context="routeData">
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
</Found>
<NotFound>
<LayoutView Layout="@typeof(MainLayout)">
<p>Sorry, there's nothing at this address.</p>
</LayoutView>
</NotFound>
</Router>
</CascadingAuthenticationState>
J'utilise l'aperçu de Visual Studio 2019 et je peux exécuter l'application, mais pourquoi ai-je la ligne rouge dans la cascade ....? Merci de votre aide.