Technical requirements
You can find all the code examples for this chapter in this book's GitHub repository at https://github.com/PacktPublishing/Implementing-Event-Driven-Microservices-Architecture-in-.NET-7/tree/main/chapter04 and https://github.com/PacktPublishing/Implementing-Event-Driven-Microservices-Architecture-in-.NET-7/tree/main/src.
Important note
The links to all the white papers and other sources mentioned in this chapter can be found in the Further reading section at the end of this chapter.
Solution structure
The structure of the overall MTAEDA solution is broken up into two major divisions:
- The core libraries that provide base functionality for use within all domains
- The domains themselves, each isolated from the other using separate solution files
The core libraries are set up to reduce complexity across the various domain solutions and are intended to offer very base functionality that can be leveraged by each domain. This functionality...