Blazor app doesn't load after upgrade to 3.0-preview4/preview5
See original GitHub issueI have latest extension installed from here. Also VS 2019 16.2.0 Preview 1.0 installed. Code migrated from 0.7.0 using official migration guide.
My app can’t load. Only router exists inside <app>
.
Nothing useful in console
Debugging gives me no information at all
My project is available here (branch called feature-blazor-3.0.0-preview4)
Please help me determine what goes wrong. I added some logging inside OnInit(Async) methods of my pages, but they’re never called. I tried to play with Startup file of Server project, but nothing changed.
dotnet --info output:
Пакет SDK для .NET Core (отражающий любой global.json):
Version: 3.0.100-preview5-011568
Commit: b487ff10aa
Среда выполнения:
OS Name: Windows
OS Version: 10.0.17134
OS Platform: Windows
RID: win10-x64
Base Path: C:\Program Files\dotnet\sdk\3.0.100-preview5-011568\
Host (useful for support):
Version: 3.0.0-preview5-27626-15
Commit: 61f30f5a23
.NET Core SDKs installed:
2.1.202 [C:\Program Files\dotnet\sdk]
2.1.700 [C:\Program Files\dotnet\sdk]
2.1.800-preview-009677 [C:\Program Files\dotnet\sdk]
2.2.300 [C:\Program Files\dotnet\sdk]
3.0.100-preview5-011568 [C:\Program Files\dotnet\sdk]
.NET Core runtimes installed:
Microsoft.AspNetCore.All 2.1.11 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.All]
Microsoft.AspNetCore.All 2.2.5 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.All]
Microsoft.AspNetCore.App 2.1.11 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.App]
Microsoft.AspNetCore.App 2.2.5 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.App]
Microsoft.AspNetCore.App 3.0.0-preview5-19227-01 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.App]
Microsoft.NETCore.App 2.0.9 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
Microsoft.NETCore.App 2.1.11 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
Microsoft.NETCore.App 2.2.5 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
Microsoft.NETCore.App 3.0.0-preview5-27626-15 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
Microsoft.WindowsDesktop.App 3.0.0-preview5-27626-15 [C:\Program Files\dotnet\shared\Microsoft.WindowsDesktop.App]
Issue Analytics
- State:
- Created 4 years ago
- Comments:14 (4 by maintainers)
Top Results From Across the Web
Default Blazor Client App fails throwing the build error ...
I am getting the same error using the latest Visual Studio Enterprise Preview with the latest templates preview 8 and latest .Net Core...
Read more >ASP.NET Core updates in .NET Core 3.0 Preview 5
To upgrade an existing an ASP.NET Core app (including Blazor apps) to .NET Core 3.0 Preview 5, follow the migrations steps in the...
Read more >ASP.NET Core 3.0 not showing on Visual Studio 2019
I want to test the new Blazor server-side framework (aka Razor Components). I installed Visual Studio 2019 RC, and then the .Net Core...
Read more >VS2019 and dotnet --info says SDK isn't installed, even ...
I installed core .net 3.0 preview 5 hosting bundle over preview 4. Then i created a new Blazor project in VS 2019 preview....
Read more >How to emulate the way Kestrel and IIS handles a URI of "/ ...
I'm trying to connect a Blazor (WASM) app in a browser to a ServiceStack ... Blazor was just upgraded from V0.9.0 to to...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Thanks @3x0dv5 for helping out here!
@vova-lantsov-dev I’m hoping the pointers from @3x0dv5 are enough to get you unblocked. If you’re still hitting issues that you think are problems we need to address in Blazor please let us know!
That’s expected. Layouts in Blazor are components defined by their own class. So using statements in the layout won’t flow into individual pages. To propagate using statements across components you should use _Imports.razor.