Joel Dickson

Results 13 comments of Joel Dickson

https://docs.microsoft.com/en-us/dotnet/core/compatibility/ https://stackoverflow.com/questions/1456785/a-definitive-guide-to-api-breaking-changes-in-net

Simple tips for avoiding breaking changes: ## Example Deleting/Removing Code Don't remove ANYTHING public. Just don't. If you are adding new features, leave the old ones. ## Example New features...

## Common Don'ts to watch out for ❌Don't move namespaces ❌Rename Parameters of methods (including changing its case) It breaks source compatibility when developers use named arguments. ❌Adding or removing...