This release improves the way Entities can be expressed for Debug purposes; instead of the convoluted functionality of the old ToString(), we now have:
```cs
/// <inheritdoc/>
/// <remarks>
/// This function formerly created what <see cref="Dump"/> returns now.
/// </remarks>
public override string ToString() => Id.ToString();
/// <summary>
/// Returns the raw value of this entity.
/// </summary>
public ulong ToRaw() => Id.Value;
/// <summary>
/// Simple Multiline Dump that lists the attached components. (formerly ToString())
/// </summary>
public string Dump()
{
//old behaviour of ToString(), lists the components along with the entity state
}