如何使用 WPF 控件多目标库项目

How to Multi target a library project with WPF controls

我有一个 class 库项目需要以 .NET 3.5 和 .NET 4.0 为目标,现在完成它的方式是为每个目标框架创建单独的项目并在每个目标框架中链接文件的典型方式项目到同一来源。

我想利用 .NET Core 项目推出的新 csproj 格式,因为使用新的 csproj 格式可以更简单地实现多目标。

我创建了一个新的 Class 库 (.NET Core) 项目并开始尝试移植我现有的库。

我真的不需要以 .netcoreapp2.0 为目标,所以我的目标框架如下所示

<PropertyGroup>
  <TargetFrameworks>net35;net40</TargetFrameworks>
</PropertyGroup>

我有以下代码块来帮助 .NET 3.5 oddities 使用新的 csproj 格式。

<PropertyGroup>
  <FrameworkPathOverride Condition="'$(TargetFramework)' == 'net35'">C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v3.5\Profile\Client</FrameworkPathOverride>
</PropertyGroup>

到目前为止一切顺利。事情开始走下坡路的原因是我的 class 库有 WPF 控件。我收到编译错误,因为它找不到 System.Windows 和其他 WPF 相关项。

我发现我可以添加对其他 windows 程序集的引用,所以我添加了以下内容

<ItemGroup>
  <Reference Include="PresentationFramework" />
  <Reference Include="PresentationCore" />
  <Reference Include="WindowsBase" />
</ItemGroup>

这消除了我的大部分错误,但现在我遇到了像 The name 'InitializeComponent' does not exist in the current context

这样的错误

从 .NET 4.0

开始,一些 WPF 项已迁移到新库 System.Xaml

只有在构建 .NET 4.0 目标时才会抛出错误 The name 'InitializeComponent' does not exist in the current context

要解决此问题,需要将以下块添加到 csproj 文件

<ItemGroup Condition="'$(TargetFramework)'=='net40'">
  <Reference Include="System.Xaml" />
</ItemGroup>

另外,xaml个页面需要构建成一个页面,所以在csproj文件中也需要添加以下内容

需要编译为页面的所有xaml个文件。

<ItemGroup>
  ...
  <Page Include="Path\to\SomeWindow.xaml" />
  <Page Include="Path\to\SomeOtherWindow.xaml" />
  ...
</ItemGroup>

这将从您的解决方案资源管理器中删除 xaml 文件,因此找到了一个变通方法 here 添加以下块来构建 xaml 页面,但仍显示在解决方案资源管理器。

<ItemGroup>
  <Page Update="@(Page)" SubType="Designer" Generator="MSBuild:Compile" />
</ItemGroup>

<ItemGroup>
  <None Include="@(Page)" />
</ItemGroup>