大风错误类型或名称名称' app'找不到
我已将项目从 .NET 6 迁移到 .NET 7 预览版 2,现在我有以下输出:
error CS0246: The type or namespace name 'App' could not be found
我正在使用 Microsoft Visual Studio Community 2022(64 位)- 预览版 版本 17.2.0 预览版 2.1。
I have migrate project from .NET 6 to .NET 7 preview 2, and now I have this output:
error CS0246: The type or namespace name 'App' could not be found
I am using Microsoft Visual Studio Community 2022 (64-bit) - Preview
Version 17.2.0 Preview 2.1.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
转到您的
Program.cs
并检查此行是否显示错误。builder.RootComponents.Add("#app");
如果您使用的是 Visual Studio,请转到该行并按 Alt + Enter 显示代码建议。检查它是否要求您导入项目的根命名空间。示例:如果您的项目名为 MyProject,您可能需要在
Program.cs
文件的导入部分添加using Myproject
。Go to your
Program.cs
and check if this line displays an error.builder.RootComponents.Add<App>("#app");
If you're using Visual Studio, go to that line and hit Alt + Enter to show the code suggestions. Check if it asks you to import the root namespace of your project. Example: if your project is named MyProject you might need to add
using Myproject
at the import section of theProgram.cs
file.仔细检查所有已安装的 nuget 包也已更新到与 .NET 7 兼容的适当预览版本
Double check all installed nuget packages are also updated to the appropriate preview version that is compatible with .NET 7