I used the skinned model sample from Microsoft to load my Blender model (.fbx) and play their animations. A import SkinnedModelWindows and SkinnedModelPipeline projects and I added them as a reference. But when I want to get skinning data (from SkinnedModelPipeline) I get this warning:
The referenced assembly "...\SkinnedModelPipeline.dll" could not be resolved because it has a dependency on "Microsoft.Build.Utilities.v4.0, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which is not in the currently targeted framework ".NETFramework,Version=v4.0,Profile=Client". Please remove references to assemblies not in the targeted framework or consider retargeting your project.
and skinning data is still null:
SkinningData skinningData = model.Tag as SkinningData;
if (skinningData == null)
throw new InvalidOperationException
("This model does not contain a SkinningData tag.");
from this I get the exception.
And ideas how to solve it?
Thanks very much!