.NET8 AOT报错:System.IO.FileNotFoundException: Could not find file 'Microsoft.AspNetCore'
AOT在Visual Studio中运行是没有问题,但要采用默认的发布配置就会报错。然后再次运行发布,系统会提示发布成功,但当运行程序时,应用会提示打不到Microsoft.AspNetCore,具体错误如下:Unhandled Exception: System.IO.FileNotFoundException: Could not find file 'Microsoft.AspNetCore'.
2023-11-28 2183 0
.NET Core中的File和PhysicalFile
最近在把.NET Framework的项目转成.NET Core,中间遇到不少坑,原来一个下载文件的地方突然又报了FileNotFoundException: Could not find file异常。查看源代码发现是Controller里原来的return File()这个方法在Core里跟之前是不一样了。
2019-04-03 6854 2