Blazor Server App Cannot find the fallback endpoint specified by route values

前端之家收集整理的这篇文章主要介绍了 Blazor Server App Cannot find the fallback endpoint specified by route values前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

github官方issues中提到的解决方案,CreateBuilder时指定项目绝对路径可以解决

1 // 指定项目路径,也可以用Assembly.GetCallingAssembly获取
2 const string ContentRootPath = @"C:\Users\BlazorServer";  项目的路径
3 string ApplicationName = nameof(BlazorServer);
4 var builder = WebApplication.CreateBuilder(new WebApplicationOptions() { ContentRootPath = ContentRootPath,ApplicationName = ApplicationName });

 

原文链接:https://www.cnblogs.com/wdw984/p/17758732.html

猜你在找的asp.Net相关文章