Arena 1.0.0

dotnet add package Arena --version 1.0.0
                    
NuGet\Install-Package Arena -Version 1.0.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Arena" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Arena" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="Arena" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Arena --version 1.0.0
                    
#r "nuget: Arena, 1.0.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Arena@1.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Arena&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=Arena&version=1.0.0
                    
Install as a Cake Tool

Arena

Build distributed systems, not distributed complexity.

Arena is an opinionated infrastructure framework for building modern .NET microservices. It provides a consistent programming model for service-to-service communication, messaging, resiliency, service integration, and application infrastructure so teams can focus on business logic instead of boilerplate.

Arena is designed around production-ready practices and embraces event-driven architecture, asynchronous messaging, and clean service boundaries.


Why Arena?

Building microservices often means repeatedly solving the same infrastructure problems:

  • Configuring MassTransit and RabbitMQ
  • Creating resilient HTTP clients
  • Handling retries and transient failures
  • Standardizing request/response messaging
  • Publishing integration events
  • Managing service contracts
  • Dependency injection configuration
  • Distributed communication patterns
  • Consistent conventions across services

Arena packages these concerns into reusable components so every service follows the same architecture.


Features

Messaging

  • Event publishing
  • Event subscriptions
  • Request/Response messaging
  • Command messaging
  • Automatic consumer registration
  • Queue conventions
  • Exchange conventions
  • Message serialization
  • Correlation support

Service Infrastructure

  • Convention-based configuration
  • Dependency Injection extensions
  • Service registration helpers
  • Modular architecture
  • Shared abstractions
  • Common infrastructure components

Developer Experience

  • Minimal setup
  • Clean APIs
  • Opinionated defaults
  • Extensible architecture
  • XML documentation
  • Source Link support

Installation

dotnet add package Arena

Architecture

Arena encourages an event-driven architecture where services remain autonomous while communicating through contracts.

                +----------------+
                |  Identity      |
                +----------------+
                      │
             UserCreated Event
                      │
      ┌───────────────┼───────────────┐
      │               │               │
      ▼               ▼               ▼
+-------------+ +-------------+ +-------------+
| Notification| | Registration| |  Billing    |
+-------------+ +-------------+ +-------------+

Each service owns:

  • Its own database
  • Its own business logic
  • Its own deployment lifecycle

Services communicate through messages instead of direct database access.


Philosophy

Arena follows several design principles:

  • Convention over configuration
  • Event-first communication
  • Loose coupling
  • High cohesion
  • Production-ready defaults
  • Infrastructure should disappear into the background
  • Business logic should remain independent of transport technologies

Roadmap

  • Messaging infrastructure
  • Dependency injection extensions
  • RabbitMQ integration
  • MassTransit integration
  • Distributed tracing
  • Outbox support
  • Inbox support

Contributing

Contributions are welcome.

If you'd like to improve Arena:

  1. Fork the repository
  2. Create a feature branch
  3. Commit your changes
  4. Open a Pull Request

Please ensure all tests pass before submitting changes.


License

Arena is released under the MIT License.

See the LICENSE file for details.


Vision

Arena exists to make building distributed .NET applications simple, consistent, and maintainable.

Instead of every service solving the same infrastructure challenges differently, Arena provides a unified foundation so development teams can concentrate on delivering business value while relying on proven, production-ready infrastructure.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.0 103 7/26/2026