Closed paulomorgado closed 10 months ago
I think the 2cd pragma is wrong. Shouldn't it be?
#pragma warning disable 8618 // Set by constructor via BaseUrl property
private string _baseUrl;
#pragma warning restore 8618 // Set by constructor via BaseUrl property
Thanks for the heads up, @FlorianGrimm. It's being solved in #4659
@paulomorgado hope it didn't hurt too much. txs for your work
Addresses concerns in #4620.
Added disabling CS8618 for the declaration of the
_baseUrl
field as it is set via theBaseUrl
property.