You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For each LibGit2SharpException derived type, find its usage and when a construct similar to the following one exist...
if (res == (int)GitErrorCode.Exists)
{
throw new EntryExistsException(
String.Format("A custom transport for '{0}' is already registered", prefix));
}
...add a new ctor to the type and update the calling code to:
if (res == (int)GitErrorCode.Exists)
{
throw new EntryExistsException(CultureInfo.InvariantCulture,
"A custom transport for '{0}' is already registered", prefix);
}