此项目未引用程序集 'SharedProject1'

Assembly 'SharedProject1' is not referenced by this project

所以我在一个解决方案中有一个 WPF 项目和一个 SharedProject。

SharedProject 有一个 ResourceDictionary 文件。我从我的 WPF 项目中引用了 SharedProject。

但是当我尝试引用 ResourceDictionary 时,它给出了消息:“程序集 'SharedProject1' 未被该项目引用”。

<Window x:Class="WPF.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:local="clr-namespace:ietstesten"
    mc:Ignorable="d"
    Title="MainWindow" Height="350" Width="525">
<Window.Resources>
    <ResourceDictionary Source="pack://application:,,,/SharedProject1;component/Dictionary1.xaml" />
</Window.Resources>
<Grid>

</Grid>

您应该将您的 ResourceDictionary 添加到 WPF Custom Control Library 项目或 WPF User Control Library 项目并引用此项目。

一个Shared Project没有编译: