Error with assembly stripping

Whenever I enable assembly stripping for my project I get the following error:

Any suggestions?

It appears it crashes when attempting the project contains a C# DLL.

Is there something special that needs to be done with this DLL for it to work? The DLL in question is a custom version of Box2DX

.NET assemblies you include must meet different requirements.

  1. They must only use whats present in the micro core lib
  2. they must be .NET 1.1 only

Thank you for the reply… I will verify it meets those criteria and let you know if it works… cheers!

Compiled the assembly after a few minor tweaks to make it .NET 1.1 compatible and it works great… thanks very much!