In this post I share a few habits that help me keep project quality high:
- ship in small increments
- validate frequently
- keep architecture decisions explicit
I usually start with dotnet build before pushing larger changes.
Example local workflow:
dotnet build src/Portfolio.slnx
dotnet test src/Portfolio.slnx
These habits reduce rework and keep features maintainable.