Visual Studio 无法生成WPF VS2022解决方案

mrwjdhj3  于 2022-11-25  发布在  其他
关注(0)|答案(1)|浏览(583)

在我删除了C# WPF .NET 6.0项目的bin和obj文件夹之后,我的Visual Studio 2022 solution无法生成。
问题不是来自Visual Studio,因为我已经尝试在Visual Studio安装程序中进行修复,并且我可以很好地生成其他WPF项目。

C:\Users\Scover\source\repos\WinClean\WinClean\Presentation\App.xaml(11,6): error MC3074: The tag 'GoldenRatioConverter' does not exist in XML namespace 'clr-namespace:Scover.WinClean.Presentation.Converters'. Line 11 Position 6.

C:\Users\Scover\source\repos\WinClean\WinClean\Presentation\Controls\ScriptEditor.xaml(15,10): error MC3074: The tag 'IsNotNullConverter' does not exist in XML namespace 'clr-namespace:Scover.WinClean.Presentation.Converters'. Line 15 Position 10.

C:\Users\Scover\source\repos\WinClean\WinClean\Presentation\Windows\AboutWindow.xaml(7,9): error MC3050: Cannot find the type 'AppInfo'. Note that type names are case sensitive.

C:\Users\Scover\source\repos\WinClean\WinClean\Presentation\Windows\MainWindow.xaml(8,76): error MC3050: Cannot find the type 'AppInfo'. Note that type names are case sensitive.

C:\Users\Scover\source\repos\WinClean\WinClean\Presentation\Windows\SettingsWindow.xaml(8,62): error MC3050: Cannot find the type 'SettingsWindow'. Note that type names are case sensitive.

问题也不是来自解决方案文件夹中的垃圾文件,因为我已经尝试过通过克隆我的存储库来重新开始

rqqzpn5f

rqqzpn5f1#

解决了。我刚从我的.csproj中删除了这一行

<AssemblyName>$(MSBuildProjectName)</AssemblyName>

相关问题