
Description:
This is a NuGet package I created for Xiangqi projects. I would love to make a ChessBase like application in the future, but I am tired of keep writing the same logic for Xiangqi over and over again. So I thought, maybe it would be a great idea to write a nuget package for this, not only that I can make use of it in my future projects, but also it would potentially help other developers with a passion to develop Xiangqi related applications in C#!
Insights gained from the Xiangqi-Core nuget package:
Utilising CI/CD via Github Actions
Integrating CI/CD into the development process has been invaluable for automating repetitive tasks. I set up an automated workflow that pushes updates to NuGet whenever a pull request is merged into the master branch. This streamlined approach saves time by eliminating redundant steps, such as manually publishing each new version. It allows me to focus on improving the functionality of the Xiangqi core library while ensuring the latest changes are quickly available for users.
Unit Tests
I’m committed to writing well-documented, tested code to ensure that my solutions are both robust and reliable. By using XUnit, I’ve developed a disciplined approach to unit testing, focusing on edge cases and complex validation logic. While it might seem time-consuming to write comprehensive tests upfront, the benefits become clear when changes to the code are necessary. For the Xiangqi core NuGet package, I implemented tests for most methods, which helped catch potential issues early. This practice not only ensures code quality but also makes the project scalable and easier to maintain over time.
Continuous Learning Through Maintenance
Maintaining the Xiangqi core NuGet package has been an excellent opportunity to deepen my understanding of C# fundamentals. As I worked through bug fixes and optimizations, I found myself revisiting core concepts like memory management, error handling, and design patterns. Each maintenance task, whether small or large, reinforced my knowledge of C#'s more nuanced features, such as delegates, LINQ, and asynchronous programming. This hands-on experience has been instrumental in refining my coding practices and ensuring that the library remains efficient, clean, and scalable.