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
You changed the code-style of the original code which makes merging upstream changes a lot harder on yourself.
In one case, IMO get => TimeSpan.Milliseconds; is more readable than what you changed it to:
get
{
return TimeSpan.Milliseconds;
}
You can refactor your modifications so you override functionality and thus you can use the upstream nuget package and make updates a lot easier for those dependencies. Git submodules can be utilized if you must have a clone of the code in your project.
The text was updated successfully, but these errors were encountered:
You changed the code-style of the original code which makes merging upstream changes a lot harder on yourself.
In one case, IMO
get => TimeSpan.Milliseconds;
is more readable than what you changed it to:You can refactor your modifications so you override functionality and thus you can use the upstream nuget package and make updates a lot easier for those dependencies. Git submodules can be utilized if you must have a clone of the code in your project.
The text was updated successfully, but these errors were encountered: