摘要:
MAUI/MAUI Blazor/Blazor Hybrid 环境路径测试笔记 (Android/iOS/Windows/SSR/PWA/WinForm/Wpf) 测试代码 Tools服务类多平台实现 MAUI public string CacheDirectory() => FileSystem 阅读全文
MAUI/MAUI Blazor/Blazor Hybrid 环境路径测试笔记 (Android/iOS/Windows/SSR/PWA/WinForm/Wpf) 测试代码 Tools服务类多平台实现 MAUI public string CacheDirectory() => FileSystem 阅读全文
posted @ 2022-11-16 19:34
AlexChow
阅读(312)
评论(0)
推荐(0)
摘要:
升级vs或者装了.Net 7.0后, 工程框架用 net6 的 dotnet watch 出错 'Unhandled exception. System.IO.FileNotFoundException: Could not load file or assembly 'System.Runtime 阅读全文
posted @ 2022-11-16 17:36
AlexChow
阅读(1253)
评论(0)
推荐(1)

按core传统方式添加 AddJsonFile("appsettings.json") 在windows平台和ssr工作正常,但是在 ios 和 android 无法用这种方式,因为资源生成方式不一样. 使用内置资源方式不够灵活而且 ios 平台会提示不能复制 json 文件到目录,于是进行了几天的研究,终于能正确使用了.
条件编译 #if NET6_0 改为 #if NET7_0 或者 #if NET6_0_OR_GREATER #if NET6_0_OR_GREATER using BootstrapBlazor.Components; #endif 项目目标支持6和7改为<TargetFramework>net6
浙公网安备 33010602011771号