Targeting net6.0, as of v4.1.0 the optional parameterName is no longer available. This works in v4.0.1.

Steps to Reproduce:
- Create a net6.0 project
- Use extension
NullOrWhiteSpace (for example)
public void MyMethod(string id)
{
Guard.Against.NullOrWhiteSpace(id);
}