大风错误类型或名称名称' app'找不到

发布于 2025-01-18 16:29:54 字数 222 浏览 0 评论 0原文

我已将项目从 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

⒈起吃苦の倖褔 2025-01-25 16:29:54

转到您的 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 the Program.cs file.

并安 2025-01-25 16:29:54

仔细检查所有已安装的 nuget 包也已更新到与 .NET 7 兼容的适当预览版本

Double check all installed nuget packages are also updated to the appropriate preview version that is compatible with .NET 7

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文