<返回更多

装了.Net 7.0后,工程框架用 net6 的 dotnet watch 出错临时解决方案

2022-11-16  今日头条  AlexChow
加入收藏

升级vs或者装了.NET 7.0后, 工程框架用 net6 的 dotnet watch 出错 'Unhandled exception.
System.IO.FileNotFoundException: Could not load file or assembly 'System.Runtime, Version=7.0.0.0'

 

环境

(win/linux都一样报错)

 


 

工程框架

<TargetFramework>net6.0</TargetFramework>

错误

dotnet watch  Started
Unhandled exception. System.IO.FileNotFoundException: Could not load file or assembly 'System.Runtime, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. The system cannot find the file specified.

File name: 'System.Runtime, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'
   at System.Reflection.RuntimeAssembly.GetType(QCallAssembly assembly, String name, Boolean throwOnError, Boolean ignoreCase, ObjectHandleOnStack type, ObjectHandleOnStack keepAlive, ObjectHandleOnStack assemblyLoadContext)
   at System.Reflection.RuntimeAssembly.GetType(String name, Boolean throwOnError, Boolean ignoreCase)
   at System.Reflection.Assembly.GetType(String name, Boolean throwOnError)
   at System.StartupHookProvider.CallStartupHook(StartupHookNameOrPath startupHook)
   at System.StartupHookProvider.ProcessStartupHooks()

临时解决方案: 工程目录下建立 global.json 文件指定编译框架

{
  "sdk": {
    "version": "6.0.403"
  }
}

知识共享许可协议

本作品采用 知识共享署名-非商业性使用-相同方式共享 4.0 国际许可协议 进行许可。欢迎转载、使用、重新发布,但务必保留文章署名AlexChow(包含链接:
https://github.com/densen2014 ),不得用于商业目的,基于本文修改后的作品务必以相同的许可发布。如有任何疑问,请与我联系 。

声明:本站部分内容来自互联网,如有版权侵犯或其他问题请与我们联系,我们将立即删除或处理。
▍相关推荐
更多资讯 >>>