0

我想要做的是在同一个项目中为 .net4 和 .net3.5 创建不同的构建配置。比方说 Release 和 Release 4.0。

我能够根据配置包含 nlog.dll 版本,与使用 .proj 文件条件的其他库相同。

但我对 WPF TOOLKIT 有问题,因为它没有 .net4.0 版本。我仅使用此工具包中的日期选择器。

我唯一的想法是在 3.5 版本上使用 wpf 工具包并删除工具包 - 在版本 4.0 版本上使用 .net4.0 datepicker。但我不知道如何根据配置更改 xaml 代码。

在 .cs 中有

#iF Release

  date = toolkit.Datepicker.selectedDate;

#endif

#if Release 4.0

  date = Datepicker.selectedDate;

#endif

xaml 中有什么类似的东西吗?

Mb 还有其他解决这个问题的方法吗?

谢谢

4

0 回答 0