For example in ConnectDevAccount.cs, we have
this.WriteObject($"Developer account {devAccount.Name} has successfully signed in.");
this.WriteObject(devAccount);
This make the cmdlets much harder to use from powershell, since we have to filter noise from the real output.
Use some of the other streams for this kind of information. In that case that would probably be the Information stream, or maybe write noting at all.
But the object stream should be reserved for actual data.