Upgrade notes
- Less than a minute to read
Upgrading to 5.31 and above
If you are using Design Atoms older than 5.31 and would like to upgrade to the later, note that a number of breaking changes were made
Installing a Separate Model Package
In Customer's Canvas 5.31, the object model was separated from the Aurigma.DesignAtoms
package. To rebuild your application, you must additionally install the new package:
```Install-Package Aurigma.DesignAtoms.Model```
Using Common Classes
The Math
class was moved to the Aurigma.DesignAtoms.Model
namespace.
In your .cs code, replace
using Aurigma.DesignAtoms.Common.Math;
with
using Aurigma.DesignAtoms.Model.Math;