├── .gitignore ├── LICENSE ├── Micro.sln ├── README.md ├── compose ├── docker-compose.yml ├── prometheus │ ├── Dockerfile │ ├── prometheus-docker.yml │ └── prometheus.yml └── rabbitmq │ ├── Dockerfile │ └── plugins ├── samples ├── Micro.Samples.CustomersService │ ├── AsyncApi.cs │ ├── Commands │ │ ├── CreateCustomer.cs │ │ └── Handlers │ │ │ └── CreateCustomerHandler.cs │ ├── DAL │ │ ├── CustomersDbContext.cs │ │ └── Migrations │ │ │ ├── 20220326125651_Init.Designer.cs │ │ │ ├── 20220326125651_Init.cs │ │ │ └── CustomersDbContextModelSnapshot.cs │ ├── DTO │ │ └── CustomerDto.cs │ ├── Entities │ │ └── Customer.cs │ ├── Events │ │ └── CustomerCreated.cs │ ├── Micro.Samples.CustomersService.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── appsettings.development.json │ ├── appsettings.json │ └── certs │ │ ├── localhost.cer │ │ ├── localhost.key │ │ ├── localhost.pem │ │ └── localhost.pfx ├── Micro.Samples.DeliveriesService │ ├── Events │ │ ├── DeliveryFailed.cs │ │ └── External │ │ │ ├── CustomerForOrderCreated.cs │ │ │ └── Handlers │ │ │ └── CustomerForOrderCreatedHandler.cs │ ├── Internals │ │ └── DeliveriesMessagingExceptionPolicyResolver.cs │ ├── Micro.Samples.DeliveriesService.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── appsettings.development.json │ ├── appsettings.json │ └── certs │ │ ├── localhost.cer │ │ └── localhost.pfx ├── Micro.Samples.OrdersService │ ├── AsyncApi.cs │ ├── Clients │ │ ├── CustomersApiClient.cs │ │ ├── DTO │ │ │ └── CustomerDto.cs │ │ └── ICustomersApiClient.cs │ ├── Commands │ │ ├── CreateOrder.cs │ │ └── Handlers │ │ │ └── CreateOrderHandler.cs │ ├── DAL │ │ ├── Configurations │ │ │ └── OrderConfiguration.cs │ │ ├── Migrations │ │ │ ├── 20220326125706_Init.Designer.cs │ │ │ ├── 20220326125706_Init.cs │ │ │ └── OrdersDbContextModelSnapshot.cs │ │ └── OrdersDbContext.cs │ ├── Entities │ │ ├── Customer.cs │ │ └── Order.cs │ ├── Events │ │ ├── CustomerForOrderCreated.cs │ │ └── External │ │ │ ├── CustomerCreated.cs │ │ │ └── Handlers │ │ │ └── CustomerCreatedHandler.cs │ ├── Exceptions │ │ └── CustomerNotFoundException.cs │ ├── Micro.Samples.OrdersService.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── appsettings.development.json │ ├── appsettings.json │ └── certs │ │ ├── localhost.cer │ │ └── localhost.pfx ├── Micro.Samples.Saga │ ├── Micro.Samples.Saga.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── appsettings.development.json │ ├── appsettings.json │ └── certs │ │ └── localhost.cer └── Micro.http ├── src ├── Micro.API │ ├── AsyncApi │ │ ├── AsyncApiOptions.cs │ │ ├── Extensions.cs │ │ └── IAsyncApi.cs │ ├── CORS │ │ ├── CorsOptions.cs │ │ └── Extensions.cs │ ├── Exceptions │ │ ├── ExceptionResponse.cs │ │ ├── Extensions.cs │ │ ├── IExceptionToResponseMapper.cs │ │ ├── Mappers │ │ │ └── ExceptionToResponseMapper.cs │ │ └── Middlewares │ │ │ └── ErrorHandlerMiddleware.cs │ ├── Micro.API.csproj │ ├── Networking │ │ ├── Extensions.cs │ │ └── NetworkingOptions.cs │ └── Swagger │ │ ├── ExcludePropertiesFilter.cs │ │ ├── Extensions.cs │ │ ├── Filters │ │ └── ExcludePropertiesFilter.cs │ │ └── SwaggerOptions.cs ├── Micro.Auth │ ├── AuthOptions.cs │ ├── Extensions.cs │ ├── JWT │ │ ├── IJsonWebTokenManager.cs │ │ ├── JsonWebToken.cs │ │ ├── JsonWebTokenManager.cs │ │ ├── JsonWebTokenPayload.cs │ │ └── SecurityKeyDetails.cs │ └── Micro.Auth.csproj ├── Micro.Contexts │ ├── Accessors │ │ ├── ContextAccessor.cs │ │ ├── IContextAccessor.cs │ │ ├── IMessageContextAccessor.cs │ │ └── MessageContextAccessor.cs │ ├── Context.cs │ ├── Extensions.cs │ ├── IContext.cs │ ├── IContextProvider.cs │ ├── MessageContext.cs │ ├── Micro.Contexts.csproj │ └── Providers │ │ └── ContextProvider.cs ├── Micro.DAL.Mongo │ ├── Extensions.cs │ ├── Micro.DAL.Mongo.csproj │ └── MongoOptions.cs ├── Micro.DAL.Postgres │ ├── Extensions.cs │ ├── IDataInitializer.cs │ ├── IUnitOfWork.cs │ ├── Internals │ │ ├── DataInitializer.cs │ │ ├── DatabaseInitializer.cs │ │ └── PostgresUnitOfWork.cs │ ├── Micro.DAL.Postgres.csproj │ ├── Pagination.cs │ └── PostgresOptions.cs ├── Micro.Framework │ ├── AppInfo.cs │ ├── Extensions.cs │ └── Micro.Framework.csproj ├── Micro.HTTP │ ├── Extensions.cs │ ├── HttpClientOptions.cs │ ├── LoadBalancing │ │ ├── Extensions.cs │ │ ├── FabioHttpHandler.cs │ │ ├── FabioOptions.cs │ │ └── FabioServiceDiscoveryRegistration.cs │ ├── Logging │ │ ├── HttpLoggingFilter.cs │ │ └── LoggingScopeHttpHandler.cs │ ├── Micro.HTTP.csproj │ └── ServiceDiscovery │ │ ├── ConsulHttpHandler.cs │ │ ├── ConsulOptions.cs │ │ ├── ConsulRegistrationService.cs │ │ ├── DefaultServiceDiscoveryRegistration.cs │ │ ├── Extensions.cs │ │ ├── IServiceDiscoveryRegistration.cs │ │ └── ServiceNotFoundException.cs ├── Micro.Messaging.Azure.ServiceBus │ ├── AzureServiceBusBrokerClient.cs │ ├── AzureServiceBusMessageSubscriber.cs │ ├── AzureServiceBusOptions.cs │ ├── Extensions.cs │ ├── Internals │ │ ├── AzureResourceInitializer.cs │ │ ├── AzureServiceBusBrokerConventions.cs │ │ └── IBrokerConventions.cs │ └── Micro.Messaging.Azure.ServiceBus.csproj ├── Micro.Messaging.RabbitMQ.Streams │ ├── Extensions.cs │ ├── Micro.Messaging.RabbitMQ.Streams.csproj │ ├── Publishers │ │ └── RabbitMQStreamPublisher.cs │ ├── RabbitMQStreamsOptions.cs │ ├── RabbitStreamInitializer.cs │ ├── RabbitStreamManager.cs │ └── Subscribers │ │ └── RabbitMQStreamSubscriber.cs ├── Micro.Messaging.RabbitMQ │ ├── Exceptions │ │ ├── MessagingErrorHandlingCommandHandlerDecorator.cs │ │ └── MessagingErrorHandlingEventHandlerDecorator.cs │ ├── Extensions.cs │ ├── Internals │ │ ├── CustomConventions.cs │ │ ├── CustomHandlerCollectionFactory.cs │ │ ├── CustomMessageSerializationStrategy.cs │ │ ├── IMessageHandler.cs │ │ ├── IMessageTypeRegistry.cs │ │ ├── MessageHandler.cs │ │ └── MessageTypeRegistry.cs │ ├── Micro.Messaging.RabbitMQ.csproj │ ├── RabbitMQBrokerClient.cs │ ├── RabbitMQMessageSubscriber.cs │ └── RabbitMQOptions.cs ├── Micro.Messaging │ ├── Brokers │ │ ├── IMessageBroker.cs │ │ └── MessageBroker.cs │ ├── Clients │ │ ├── DefaultMessageBrokerClient.cs │ │ └── IMessageBrokerClient.cs │ ├── Exceptions │ │ ├── DefaultMessagingExceptionPolicyHandler.cs │ │ ├── DefaultMessagingExceptionPolicyResolver.cs │ │ ├── FailedMessage.cs │ │ ├── IMessagingExceptionPolicyHandler.cs │ │ ├── IMessagingExceptionPolicyResolver.cs │ │ └── MessageExceptionPolicy.cs │ ├── Extensions.cs │ ├── MessageEnvelope.cs │ ├── MessagingOptions.cs │ ├── Micro.Messaging.csproj │ ├── Streams │ │ ├── DefaultStreamPublisher.cs │ │ ├── DefaultStreamSubscriber.cs │ │ ├── IStreamPublisher.cs │ │ ├── IStreamSubscriber.cs │ │ └── Serialization │ │ │ ├── IStreamSerializer.cs │ │ │ └── SystemTextJsonStreamSerializer.cs │ └── Subscribers │ │ ├── DefaultMessageSubscriber.cs │ │ └── IMessageSubscriber.cs ├── Micro.Observability │ ├── Extensions.cs │ ├── Logging │ │ ├── Decorators │ │ │ ├── LoggingCommandHandlerDecorator.cs │ │ │ └── LoggingEventHandlerDecorator.cs │ │ ├── Extensions.cs │ │ ├── Middlewares │ │ │ └── ContextLoggingMiddleware.cs │ │ └── SerilogOptions.cs │ ├── Metrics │ │ ├── Decorators │ │ │ └── MessageBrokerMetricsDecorator.cs │ │ ├── Extensions.cs │ │ ├── IMetrics.cs │ │ ├── MeterAttribute.cs │ │ ├── Metrics.cs │ │ ├── MetricsOptions.cs │ │ └── ObservableValue.cs │ ├── Micro.Observability.csproj │ └── Tracing │ │ ├── Decorators │ │ ├── MessageBrokerTracingDecorator.cs │ │ └── MessageHandlerTracingDecorator.cs │ │ ├── Extensions.cs │ │ └── TracingOptions.cs ├── Micro.Security │ ├── Encryption │ │ ├── AesEncryptor.cs │ │ ├── IEncryptor.cs │ │ ├── IPasswordManager.cs │ │ └── PasswordManager.cs │ ├── Extensions.cs │ ├── Hashing │ │ ├── IShaHasher.cs │ │ └── ShaHasher.cs │ ├── Micro.Security.csproj │ ├── Random │ │ ├── IRng.cs │ │ └── Rng.cs │ ├── SecurityOptions.cs │ ├── Signing │ │ ├── ISigner.cs │ │ └── Signer.cs │ └── Vault │ │ ├── Extensions.cs │ │ ├── ICertificatesIssuer.cs │ │ ├── ICertificatesStore.cs │ │ ├── IKeyValueSecrets.cs │ │ ├── ILeaseService.cs │ │ ├── Internals │ │ ├── CertificatesIssuer.cs │ │ ├── CertificatesStore.cs │ │ ├── EmptyCertificatesIssuer.cs │ │ ├── KeyValueSecrets.cs │ │ ├── LeaseService.cs │ │ └── VaultHostedService.cs │ │ ├── JsonParser.cs │ │ ├── LeaseData.cs │ │ ├── VaultAuthTypeNotSupportedException.cs │ │ ├── VaultException.cs │ │ └── VaultOptions.cs ├── Micro.Testing │ ├── EndpointContract.cs │ ├── MessageContract.cs │ ├── Micro.Testing.csproj │ ├── OptionsProvider.cs │ ├── PactBrokerPublisher.cs │ ├── TestApp.cs │ ├── TestAuthenticator.cs │ ├── TestHttpClientFactory.cs │ ├── TestMessageBroker.cs │ ├── TestServer.cs │ └── XUnitOutput.cs ├── Micro.Transactions │ ├── Decorators │ │ ├── OutboxInstantSenderCommandHandlerDecorator.cs │ │ ├── OutboxInstantSenderEventHandlerDecorator.cs │ │ ├── TransactionalCommandHandlerDecorator.cs │ │ └── TransactionalEventHandlerDecorator.cs │ ├── Extensions.cs │ ├── Inbox │ │ ├── EfInbox.cs │ │ ├── Extensions.cs │ │ ├── IInbox.cs │ │ ├── InboxCleaner.cs │ │ ├── InboxCommandHandlerDecorator.cs │ │ ├── InboxEventHandlerDecorator.cs │ │ ├── InboxMessage.cs │ │ └── InboxOptions.cs │ ├── Micro.Transactions.csproj │ └── Outbox │ │ ├── EfOutbox.cs │ │ ├── Extensions.cs │ │ ├── IOutbox.cs │ │ ├── OutboxCleaner.cs │ │ ├── OutboxMessage.cs │ │ ├── OutboxMessageBroker.cs │ │ ├── OutboxOptions.cs │ │ └── OutboxSender.cs └── Micro │ ├── Abstractions │ ├── ICommand.cs │ ├── IEvent.cs │ ├── IMessage.cs │ └── IQuery.cs │ ├── AppOptions.cs │ ├── Attributes │ ├── DecoratorAttribute.cs │ ├── HiddenAttribute.cs │ └── MessageAttribute.cs │ ├── Dispatchers │ ├── Extensions.cs │ ├── InMemoryCommandDispatcher.cs │ ├── InMemoryDispatcher.cs │ ├── InMemoryEventDispatcher.cs │ └── InMemoryQueryDispatcher.cs │ ├── Exceptions │ └── CustomException.cs │ ├── Extensions.cs │ ├── Handlers │ ├── ICommandDispatcher.cs │ ├── ICommandHandler.cs │ ├── IDispatcher.cs │ ├── IEventDispatcher.cs │ ├── IEventHandler.cs │ ├── IQueryDispatcher.cs │ └── IQueryHandler.cs │ ├── Identity │ ├── IIdGen.cs │ └── IdentityGenerator.cs │ ├── Micro.csproj │ ├── Pagination │ ├── IPagedQuery.cs │ ├── Paged.cs │ ├── PagedBase.cs │ └── PagedQuery.cs │ ├── Serialization │ ├── IJsonSerializer.cs │ └── SystemTextJsonSerializer.cs │ └── Time │ ├── IClock.cs │ └── UtcClock.cs └── tye.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/LICENSE -------------------------------------------------------------------------------- /Micro.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/Micro.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/README.md -------------------------------------------------------------------------------- /compose/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/compose/docker-compose.yml -------------------------------------------------------------------------------- /compose/prometheus/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/compose/prometheus/Dockerfile -------------------------------------------------------------------------------- /compose/prometheus/prometheus-docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/compose/prometheus/prometheus-docker.yml -------------------------------------------------------------------------------- /compose/prometheus/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/compose/prometheus/prometheus.yml -------------------------------------------------------------------------------- /compose/rabbitmq/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/compose/rabbitmq/Dockerfile -------------------------------------------------------------------------------- /compose/rabbitmq/plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/compose/rabbitmq/plugins -------------------------------------------------------------------------------- /samples/Micro.Samples.CustomersService/AsyncApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.CustomersService/AsyncApi.cs -------------------------------------------------------------------------------- /samples/Micro.Samples.CustomersService/Commands/CreateCustomer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.CustomersService/Commands/CreateCustomer.cs -------------------------------------------------------------------------------- /samples/Micro.Samples.CustomersService/Commands/Handlers/CreateCustomerHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.CustomersService/Commands/Handlers/CreateCustomerHandler.cs -------------------------------------------------------------------------------- /samples/Micro.Samples.CustomersService/DAL/CustomersDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.CustomersService/DAL/CustomersDbContext.cs -------------------------------------------------------------------------------- /samples/Micro.Samples.CustomersService/DAL/Migrations/20220326125651_Init.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.CustomersService/DAL/Migrations/20220326125651_Init.Designer.cs -------------------------------------------------------------------------------- /samples/Micro.Samples.CustomersService/DAL/Migrations/20220326125651_Init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.CustomersService/DAL/Migrations/20220326125651_Init.cs -------------------------------------------------------------------------------- /samples/Micro.Samples.CustomersService/DAL/Migrations/CustomersDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.CustomersService/DAL/Migrations/CustomersDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /samples/Micro.Samples.CustomersService/DTO/CustomerDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.CustomersService/DTO/CustomerDto.cs -------------------------------------------------------------------------------- /samples/Micro.Samples.CustomersService/Entities/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.CustomersService/Entities/Customer.cs -------------------------------------------------------------------------------- /samples/Micro.Samples.CustomersService/Events/CustomerCreated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.CustomersService/Events/CustomerCreated.cs -------------------------------------------------------------------------------- /samples/Micro.Samples.CustomersService/Micro.Samples.CustomersService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.CustomersService/Micro.Samples.CustomersService.csproj -------------------------------------------------------------------------------- /samples/Micro.Samples.CustomersService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.CustomersService/Program.cs -------------------------------------------------------------------------------- /samples/Micro.Samples.CustomersService/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.CustomersService/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/Micro.Samples.CustomersService/appsettings.development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.CustomersService/appsettings.development.json -------------------------------------------------------------------------------- /samples/Micro.Samples.CustomersService/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.CustomersService/appsettings.json -------------------------------------------------------------------------------- /samples/Micro.Samples.CustomersService/certs/localhost.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.CustomersService/certs/localhost.cer -------------------------------------------------------------------------------- /samples/Micro.Samples.CustomersService/certs/localhost.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.CustomersService/certs/localhost.key -------------------------------------------------------------------------------- /samples/Micro.Samples.CustomersService/certs/localhost.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.CustomersService/certs/localhost.pem -------------------------------------------------------------------------------- /samples/Micro.Samples.CustomersService/certs/localhost.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.CustomersService/certs/localhost.pfx -------------------------------------------------------------------------------- /samples/Micro.Samples.DeliveriesService/Events/DeliveryFailed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.DeliveriesService/Events/DeliveryFailed.cs -------------------------------------------------------------------------------- /samples/Micro.Samples.DeliveriesService/Events/External/CustomerForOrderCreated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.DeliveriesService/Events/External/CustomerForOrderCreated.cs -------------------------------------------------------------------------------- /samples/Micro.Samples.DeliveriesService/Events/External/Handlers/CustomerForOrderCreatedHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.DeliveriesService/Events/External/Handlers/CustomerForOrderCreatedHandler.cs -------------------------------------------------------------------------------- /samples/Micro.Samples.DeliveriesService/Internals/DeliveriesMessagingExceptionPolicyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.DeliveriesService/Internals/DeliveriesMessagingExceptionPolicyResolver.cs -------------------------------------------------------------------------------- /samples/Micro.Samples.DeliveriesService/Micro.Samples.DeliveriesService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.DeliveriesService/Micro.Samples.DeliveriesService.csproj -------------------------------------------------------------------------------- /samples/Micro.Samples.DeliveriesService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.DeliveriesService/Program.cs -------------------------------------------------------------------------------- /samples/Micro.Samples.DeliveriesService/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.DeliveriesService/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/Micro.Samples.DeliveriesService/appsettings.development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.DeliveriesService/appsettings.development.json -------------------------------------------------------------------------------- /samples/Micro.Samples.DeliveriesService/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.DeliveriesService/appsettings.json -------------------------------------------------------------------------------- /samples/Micro.Samples.DeliveriesService/certs/localhost.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.DeliveriesService/certs/localhost.cer -------------------------------------------------------------------------------- /samples/Micro.Samples.DeliveriesService/certs/localhost.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.DeliveriesService/certs/localhost.pfx -------------------------------------------------------------------------------- /samples/Micro.Samples.OrdersService/AsyncApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.OrdersService/AsyncApi.cs -------------------------------------------------------------------------------- /samples/Micro.Samples.OrdersService/Clients/CustomersApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.OrdersService/Clients/CustomersApiClient.cs -------------------------------------------------------------------------------- /samples/Micro.Samples.OrdersService/Clients/DTO/CustomerDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.OrdersService/Clients/DTO/CustomerDto.cs -------------------------------------------------------------------------------- /samples/Micro.Samples.OrdersService/Clients/ICustomersApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.OrdersService/Clients/ICustomersApiClient.cs -------------------------------------------------------------------------------- /samples/Micro.Samples.OrdersService/Commands/CreateOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.OrdersService/Commands/CreateOrder.cs -------------------------------------------------------------------------------- /samples/Micro.Samples.OrdersService/Commands/Handlers/CreateOrderHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.OrdersService/Commands/Handlers/CreateOrderHandler.cs -------------------------------------------------------------------------------- /samples/Micro.Samples.OrdersService/DAL/Configurations/OrderConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.OrdersService/DAL/Configurations/OrderConfiguration.cs -------------------------------------------------------------------------------- /samples/Micro.Samples.OrdersService/DAL/Migrations/20220326125706_Init.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.OrdersService/DAL/Migrations/20220326125706_Init.Designer.cs -------------------------------------------------------------------------------- /samples/Micro.Samples.OrdersService/DAL/Migrations/20220326125706_Init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.OrdersService/DAL/Migrations/20220326125706_Init.cs -------------------------------------------------------------------------------- /samples/Micro.Samples.OrdersService/DAL/Migrations/OrdersDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.OrdersService/DAL/Migrations/OrdersDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /samples/Micro.Samples.OrdersService/DAL/OrdersDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.OrdersService/DAL/OrdersDbContext.cs -------------------------------------------------------------------------------- /samples/Micro.Samples.OrdersService/Entities/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.OrdersService/Entities/Customer.cs -------------------------------------------------------------------------------- /samples/Micro.Samples.OrdersService/Entities/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.OrdersService/Entities/Order.cs -------------------------------------------------------------------------------- /samples/Micro.Samples.OrdersService/Events/CustomerForOrderCreated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.OrdersService/Events/CustomerForOrderCreated.cs -------------------------------------------------------------------------------- /samples/Micro.Samples.OrdersService/Events/External/CustomerCreated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.OrdersService/Events/External/CustomerCreated.cs -------------------------------------------------------------------------------- /samples/Micro.Samples.OrdersService/Events/External/Handlers/CustomerCreatedHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.OrdersService/Events/External/Handlers/CustomerCreatedHandler.cs -------------------------------------------------------------------------------- /samples/Micro.Samples.OrdersService/Exceptions/CustomerNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.OrdersService/Exceptions/CustomerNotFoundException.cs -------------------------------------------------------------------------------- /samples/Micro.Samples.OrdersService/Micro.Samples.OrdersService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.OrdersService/Micro.Samples.OrdersService.csproj -------------------------------------------------------------------------------- /samples/Micro.Samples.OrdersService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.OrdersService/Program.cs -------------------------------------------------------------------------------- /samples/Micro.Samples.OrdersService/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.OrdersService/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/Micro.Samples.OrdersService/appsettings.development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.OrdersService/appsettings.development.json -------------------------------------------------------------------------------- /samples/Micro.Samples.OrdersService/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.OrdersService/appsettings.json -------------------------------------------------------------------------------- /samples/Micro.Samples.OrdersService/certs/localhost.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.OrdersService/certs/localhost.cer -------------------------------------------------------------------------------- /samples/Micro.Samples.OrdersService/certs/localhost.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.OrdersService/certs/localhost.pfx -------------------------------------------------------------------------------- /samples/Micro.Samples.Saga/Micro.Samples.Saga.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.Saga/Micro.Samples.Saga.csproj -------------------------------------------------------------------------------- /samples/Micro.Samples.Saga/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.Saga/Program.cs -------------------------------------------------------------------------------- /samples/Micro.Samples.Saga/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.Saga/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/Micro.Samples.Saga/appsettings.development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.Saga/appsettings.development.json -------------------------------------------------------------------------------- /samples/Micro.Samples.Saga/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.Saga/appsettings.json -------------------------------------------------------------------------------- /samples/Micro.Samples.Saga/certs/localhost.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.Samples.Saga/certs/localhost.cer -------------------------------------------------------------------------------- /samples/Micro.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/samples/Micro.http -------------------------------------------------------------------------------- /src/Micro.API/AsyncApi/AsyncApiOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.API/AsyncApi/AsyncApiOptions.cs -------------------------------------------------------------------------------- /src/Micro.API/AsyncApi/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.API/AsyncApi/Extensions.cs -------------------------------------------------------------------------------- /src/Micro.API/AsyncApi/IAsyncApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.API/AsyncApi/IAsyncApi.cs -------------------------------------------------------------------------------- /src/Micro.API/CORS/CorsOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.API/CORS/CorsOptions.cs -------------------------------------------------------------------------------- /src/Micro.API/CORS/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.API/CORS/Extensions.cs -------------------------------------------------------------------------------- /src/Micro.API/Exceptions/ExceptionResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.API/Exceptions/ExceptionResponse.cs -------------------------------------------------------------------------------- /src/Micro.API/Exceptions/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.API/Exceptions/Extensions.cs -------------------------------------------------------------------------------- /src/Micro.API/Exceptions/IExceptionToResponseMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.API/Exceptions/IExceptionToResponseMapper.cs -------------------------------------------------------------------------------- /src/Micro.API/Exceptions/Mappers/ExceptionToResponseMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.API/Exceptions/Mappers/ExceptionToResponseMapper.cs -------------------------------------------------------------------------------- /src/Micro.API/Exceptions/Middlewares/ErrorHandlerMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.API/Exceptions/Middlewares/ErrorHandlerMiddleware.cs -------------------------------------------------------------------------------- /src/Micro.API/Micro.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.API/Micro.API.csproj -------------------------------------------------------------------------------- /src/Micro.API/Networking/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.API/Networking/Extensions.cs -------------------------------------------------------------------------------- /src/Micro.API/Networking/NetworkingOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.API/Networking/NetworkingOptions.cs -------------------------------------------------------------------------------- /src/Micro.API/Swagger/ExcludePropertiesFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.API/Swagger/ExcludePropertiesFilter.cs -------------------------------------------------------------------------------- /src/Micro.API/Swagger/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.API/Swagger/Extensions.cs -------------------------------------------------------------------------------- /src/Micro.API/Swagger/Filters/ExcludePropertiesFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.API/Swagger/Filters/ExcludePropertiesFilter.cs -------------------------------------------------------------------------------- /src/Micro.API/Swagger/SwaggerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.API/Swagger/SwaggerOptions.cs -------------------------------------------------------------------------------- /src/Micro.Auth/AuthOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Auth/AuthOptions.cs -------------------------------------------------------------------------------- /src/Micro.Auth/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Auth/Extensions.cs -------------------------------------------------------------------------------- /src/Micro.Auth/JWT/IJsonWebTokenManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Auth/JWT/IJsonWebTokenManager.cs -------------------------------------------------------------------------------- /src/Micro.Auth/JWT/JsonWebToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Auth/JWT/JsonWebToken.cs -------------------------------------------------------------------------------- /src/Micro.Auth/JWT/JsonWebTokenManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Auth/JWT/JsonWebTokenManager.cs -------------------------------------------------------------------------------- /src/Micro.Auth/JWT/JsonWebTokenPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Auth/JWT/JsonWebTokenPayload.cs -------------------------------------------------------------------------------- /src/Micro.Auth/JWT/SecurityKeyDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Auth/JWT/SecurityKeyDetails.cs -------------------------------------------------------------------------------- /src/Micro.Auth/Micro.Auth.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Auth/Micro.Auth.csproj -------------------------------------------------------------------------------- /src/Micro.Contexts/Accessors/ContextAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Contexts/Accessors/ContextAccessor.cs -------------------------------------------------------------------------------- /src/Micro.Contexts/Accessors/IContextAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Contexts/Accessors/IContextAccessor.cs -------------------------------------------------------------------------------- /src/Micro.Contexts/Accessors/IMessageContextAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Contexts/Accessors/IMessageContextAccessor.cs -------------------------------------------------------------------------------- /src/Micro.Contexts/Accessors/MessageContextAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Contexts/Accessors/MessageContextAccessor.cs -------------------------------------------------------------------------------- /src/Micro.Contexts/Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Contexts/Context.cs -------------------------------------------------------------------------------- /src/Micro.Contexts/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Contexts/Extensions.cs -------------------------------------------------------------------------------- /src/Micro.Contexts/IContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Contexts/IContext.cs -------------------------------------------------------------------------------- /src/Micro.Contexts/IContextProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Contexts/IContextProvider.cs -------------------------------------------------------------------------------- /src/Micro.Contexts/MessageContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Contexts/MessageContext.cs -------------------------------------------------------------------------------- /src/Micro.Contexts/Micro.Contexts.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Contexts/Micro.Contexts.csproj -------------------------------------------------------------------------------- /src/Micro.Contexts/Providers/ContextProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Contexts/Providers/ContextProvider.cs -------------------------------------------------------------------------------- /src/Micro.DAL.Mongo/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.DAL.Mongo/Extensions.cs -------------------------------------------------------------------------------- /src/Micro.DAL.Mongo/Micro.DAL.Mongo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.DAL.Mongo/Micro.DAL.Mongo.csproj -------------------------------------------------------------------------------- /src/Micro.DAL.Mongo/MongoOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.DAL.Mongo/MongoOptions.cs -------------------------------------------------------------------------------- /src/Micro.DAL.Postgres/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.DAL.Postgres/Extensions.cs -------------------------------------------------------------------------------- /src/Micro.DAL.Postgres/IDataInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.DAL.Postgres/IDataInitializer.cs -------------------------------------------------------------------------------- /src/Micro.DAL.Postgres/IUnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.DAL.Postgres/IUnitOfWork.cs -------------------------------------------------------------------------------- /src/Micro.DAL.Postgres/Internals/DataInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.DAL.Postgres/Internals/DataInitializer.cs -------------------------------------------------------------------------------- /src/Micro.DAL.Postgres/Internals/DatabaseInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.DAL.Postgres/Internals/DatabaseInitializer.cs -------------------------------------------------------------------------------- /src/Micro.DAL.Postgres/Internals/PostgresUnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.DAL.Postgres/Internals/PostgresUnitOfWork.cs -------------------------------------------------------------------------------- /src/Micro.DAL.Postgres/Micro.DAL.Postgres.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.DAL.Postgres/Micro.DAL.Postgres.csproj -------------------------------------------------------------------------------- /src/Micro.DAL.Postgres/Pagination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.DAL.Postgres/Pagination.cs -------------------------------------------------------------------------------- /src/Micro.DAL.Postgres/PostgresOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.DAL.Postgres/PostgresOptions.cs -------------------------------------------------------------------------------- /src/Micro.Framework/AppInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Framework/AppInfo.cs -------------------------------------------------------------------------------- /src/Micro.Framework/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Framework/Extensions.cs -------------------------------------------------------------------------------- /src/Micro.Framework/Micro.Framework.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Framework/Micro.Framework.csproj -------------------------------------------------------------------------------- /src/Micro.HTTP/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.HTTP/Extensions.cs -------------------------------------------------------------------------------- /src/Micro.HTTP/HttpClientOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.HTTP/HttpClientOptions.cs -------------------------------------------------------------------------------- /src/Micro.HTTP/LoadBalancing/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.HTTP/LoadBalancing/Extensions.cs -------------------------------------------------------------------------------- /src/Micro.HTTP/LoadBalancing/FabioHttpHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.HTTP/LoadBalancing/FabioHttpHandler.cs -------------------------------------------------------------------------------- /src/Micro.HTTP/LoadBalancing/FabioOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.HTTP/LoadBalancing/FabioOptions.cs -------------------------------------------------------------------------------- /src/Micro.HTTP/LoadBalancing/FabioServiceDiscoveryRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.HTTP/LoadBalancing/FabioServiceDiscoveryRegistration.cs -------------------------------------------------------------------------------- /src/Micro.HTTP/Logging/HttpLoggingFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.HTTP/Logging/HttpLoggingFilter.cs -------------------------------------------------------------------------------- /src/Micro.HTTP/Logging/LoggingScopeHttpHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.HTTP/Logging/LoggingScopeHttpHandler.cs -------------------------------------------------------------------------------- /src/Micro.HTTP/Micro.HTTP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.HTTP/Micro.HTTP.csproj -------------------------------------------------------------------------------- /src/Micro.HTTP/ServiceDiscovery/ConsulHttpHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.HTTP/ServiceDiscovery/ConsulHttpHandler.cs -------------------------------------------------------------------------------- /src/Micro.HTTP/ServiceDiscovery/ConsulOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.HTTP/ServiceDiscovery/ConsulOptions.cs -------------------------------------------------------------------------------- /src/Micro.HTTP/ServiceDiscovery/ConsulRegistrationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.HTTP/ServiceDiscovery/ConsulRegistrationService.cs -------------------------------------------------------------------------------- /src/Micro.HTTP/ServiceDiscovery/DefaultServiceDiscoveryRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.HTTP/ServiceDiscovery/DefaultServiceDiscoveryRegistration.cs -------------------------------------------------------------------------------- /src/Micro.HTTP/ServiceDiscovery/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.HTTP/ServiceDiscovery/Extensions.cs -------------------------------------------------------------------------------- /src/Micro.HTTP/ServiceDiscovery/IServiceDiscoveryRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.HTTP/ServiceDiscovery/IServiceDiscoveryRegistration.cs -------------------------------------------------------------------------------- /src/Micro.HTTP/ServiceDiscovery/ServiceNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.HTTP/ServiceDiscovery/ServiceNotFoundException.cs -------------------------------------------------------------------------------- /src/Micro.Messaging.Azure.ServiceBus/AzureServiceBusBrokerClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging.Azure.ServiceBus/AzureServiceBusBrokerClient.cs -------------------------------------------------------------------------------- /src/Micro.Messaging.Azure.ServiceBus/AzureServiceBusMessageSubscriber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging.Azure.ServiceBus/AzureServiceBusMessageSubscriber.cs -------------------------------------------------------------------------------- /src/Micro.Messaging.Azure.ServiceBus/AzureServiceBusOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging.Azure.ServiceBus/AzureServiceBusOptions.cs -------------------------------------------------------------------------------- /src/Micro.Messaging.Azure.ServiceBus/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging.Azure.ServiceBus/Extensions.cs -------------------------------------------------------------------------------- /src/Micro.Messaging.Azure.ServiceBus/Internals/AzureResourceInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging.Azure.ServiceBus/Internals/AzureResourceInitializer.cs -------------------------------------------------------------------------------- /src/Micro.Messaging.Azure.ServiceBus/Internals/AzureServiceBusBrokerConventions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging.Azure.ServiceBus/Internals/AzureServiceBusBrokerConventions.cs -------------------------------------------------------------------------------- /src/Micro.Messaging.Azure.ServiceBus/Internals/IBrokerConventions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging.Azure.ServiceBus/Internals/IBrokerConventions.cs -------------------------------------------------------------------------------- /src/Micro.Messaging.Azure.ServiceBus/Micro.Messaging.Azure.ServiceBus.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging.Azure.ServiceBus/Micro.Messaging.Azure.ServiceBus.csproj -------------------------------------------------------------------------------- /src/Micro.Messaging.RabbitMQ.Streams/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging.RabbitMQ.Streams/Extensions.cs -------------------------------------------------------------------------------- /src/Micro.Messaging.RabbitMQ.Streams/Micro.Messaging.RabbitMQ.Streams.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging.RabbitMQ.Streams/Micro.Messaging.RabbitMQ.Streams.csproj -------------------------------------------------------------------------------- /src/Micro.Messaging.RabbitMQ.Streams/Publishers/RabbitMQStreamPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging.RabbitMQ.Streams/Publishers/RabbitMQStreamPublisher.cs -------------------------------------------------------------------------------- /src/Micro.Messaging.RabbitMQ.Streams/RabbitMQStreamsOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging.RabbitMQ.Streams/RabbitMQStreamsOptions.cs -------------------------------------------------------------------------------- /src/Micro.Messaging.RabbitMQ.Streams/RabbitStreamInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging.RabbitMQ.Streams/RabbitStreamInitializer.cs -------------------------------------------------------------------------------- /src/Micro.Messaging.RabbitMQ.Streams/RabbitStreamManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging.RabbitMQ.Streams/RabbitStreamManager.cs -------------------------------------------------------------------------------- /src/Micro.Messaging.RabbitMQ.Streams/Subscribers/RabbitMQStreamSubscriber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging.RabbitMQ.Streams/Subscribers/RabbitMQStreamSubscriber.cs -------------------------------------------------------------------------------- /src/Micro.Messaging.RabbitMQ/Exceptions/MessagingErrorHandlingCommandHandlerDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging.RabbitMQ/Exceptions/MessagingErrorHandlingCommandHandlerDecorator.cs -------------------------------------------------------------------------------- /src/Micro.Messaging.RabbitMQ/Exceptions/MessagingErrorHandlingEventHandlerDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging.RabbitMQ/Exceptions/MessagingErrorHandlingEventHandlerDecorator.cs -------------------------------------------------------------------------------- /src/Micro.Messaging.RabbitMQ/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging.RabbitMQ/Extensions.cs -------------------------------------------------------------------------------- /src/Micro.Messaging.RabbitMQ/Internals/CustomConventions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging.RabbitMQ/Internals/CustomConventions.cs -------------------------------------------------------------------------------- /src/Micro.Messaging.RabbitMQ/Internals/CustomHandlerCollectionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging.RabbitMQ/Internals/CustomHandlerCollectionFactory.cs -------------------------------------------------------------------------------- /src/Micro.Messaging.RabbitMQ/Internals/CustomMessageSerializationStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging.RabbitMQ/Internals/CustomMessageSerializationStrategy.cs -------------------------------------------------------------------------------- /src/Micro.Messaging.RabbitMQ/Internals/IMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging.RabbitMQ/Internals/IMessageHandler.cs -------------------------------------------------------------------------------- /src/Micro.Messaging.RabbitMQ/Internals/IMessageTypeRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging.RabbitMQ/Internals/IMessageTypeRegistry.cs -------------------------------------------------------------------------------- /src/Micro.Messaging.RabbitMQ/Internals/MessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging.RabbitMQ/Internals/MessageHandler.cs -------------------------------------------------------------------------------- /src/Micro.Messaging.RabbitMQ/Internals/MessageTypeRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging.RabbitMQ/Internals/MessageTypeRegistry.cs -------------------------------------------------------------------------------- /src/Micro.Messaging.RabbitMQ/Micro.Messaging.RabbitMQ.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging.RabbitMQ/Micro.Messaging.RabbitMQ.csproj -------------------------------------------------------------------------------- /src/Micro.Messaging.RabbitMQ/RabbitMQBrokerClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging.RabbitMQ/RabbitMQBrokerClient.cs -------------------------------------------------------------------------------- /src/Micro.Messaging.RabbitMQ/RabbitMQMessageSubscriber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging.RabbitMQ/RabbitMQMessageSubscriber.cs -------------------------------------------------------------------------------- /src/Micro.Messaging.RabbitMQ/RabbitMQOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging.RabbitMQ/RabbitMQOptions.cs -------------------------------------------------------------------------------- /src/Micro.Messaging/Brokers/IMessageBroker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging/Brokers/IMessageBroker.cs -------------------------------------------------------------------------------- /src/Micro.Messaging/Brokers/MessageBroker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging/Brokers/MessageBroker.cs -------------------------------------------------------------------------------- /src/Micro.Messaging/Clients/DefaultMessageBrokerClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging/Clients/DefaultMessageBrokerClient.cs -------------------------------------------------------------------------------- /src/Micro.Messaging/Clients/IMessageBrokerClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging/Clients/IMessageBrokerClient.cs -------------------------------------------------------------------------------- /src/Micro.Messaging/Exceptions/DefaultMessagingExceptionPolicyHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging/Exceptions/DefaultMessagingExceptionPolicyHandler.cs -------------------------------------------------------------------------------- /src/Micro.Messaging/Exceptions/DefaultMessagingExceptionPolicyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging/Exceptions/DefaultMessagingExceptionPolicyResolver.cs -------------------------------------------------------------------------------- /src/Micro.Messaging/Exceptions/FailedMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging/Exceptions/FailedMessage.cs -------------------------------------------------------------------------------- /src/Micro.Messaging/Exceptions/IMessagingExceptionPolicyHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging/Exceptions/IMessagingExceptionPolicyHandler.cs -------------------------------------------------------------------------------- /src/Micro.Messaging/Exceptions/IMessagingExceptionPolicyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging/Exceptions/IMessagingExceptionPolicyResolver.cs -------------------------------------------------------------------------------- /src/Micro.Messaging/Exceptions/MessageExceptionPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging/Exceptions/MessageExceptionPolicy.cs -------------------------------------------------------------------------------- /src/Micro.Messaging/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging/Extensions.cs -------------------------------------------------------------------------------- /src/Micro.Messaging/MessageEnvelope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging/MessageEnvelope.cs -------------------------------------------------------------------------------- /src/Micro.Messaging/MessagingOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging/MessagingOptions.cs -------------------------------------------------------------------------------- /src/Micro.Messaging/Micro.Messaging.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging/Micro.Messaging.csproj -------------------------------------------------------------------------------- /src/Micro.Messaging/Streams/DefaultStreamPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging/Streams/DefaultStreamPublisher.cs -------------------------------------------------------------------------------- /src/Micro.Messaging/Streams/DefaultStreamSubscriber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging/Streams/DefaultStreamSubscriber.cs -------------------------------------------------------------------------------- /src/Micro.Messaging/Streams/IStreamPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging/Streams/IStreamPublisher.cs -------------------------------------------------------------------------------- /src/Micro.Messaging/Streams/IStreamSubscriber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging/Streams/IStreamSubscriber.cs -------------------------------------------------------------------------------- /src/Micro.Messaging/Streams/Serialization/IStreamSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging/Streams/Serialization/IStreamSerializer.cs -------------------------------------------------------------------------------- /src/Micro.Messaging/Streams/Serialization/SystemTextJsonStreamSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging/Streams/Serialization/SystemTextJsonStreamSerializer.cs -------------------------------------------------------------------------------- /src/Micro.Messaging/Subscribers/DefaultMessageSubscriber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging/Subscribers/DefaultMessageSubscriber.cs -------------------------------------------------------------------------------- /src/Micro.Messaging/Subscribers/IMessageSubscriber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Messaging/Subscribers/IMessageSubscriber.cs -------------------------------------------------------------------------------- /src/Micro.Observability/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Observability/Extensions.cs -------------------------------------------------------------------------------- /src/Micro.Observability/Logging/Decorators/LoggingCommandHandlerDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Observability/Logging/Decorators/LoggingCommandHandlerDecorator.cs -------------------------------------------------------------------------------- /src/Micro.Observability/Logging/Decorators/LoggingEventHandlerDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Observability/Logging/Decorators/LoggingEventHandlerDecorator.cs -------------------------------------------------------------------------------- /src/Micro.Observability/Logging/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Observability/Logging/Extensions.cs -------------------------------------------------------------------------------- /src/Micro.Observability/Logging/Middlewares/ContextLoggingMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Observability/Logging/Middlewares/ContextLoggingMiddleware.cs -------------------------------------------------------------------------------- /src/Micro.Observability/Logging/SerilogOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Observability/Logging/SerilogOptions.cs -------------------------------------------------------------------------------- /src/Micro.Observability/Metrics/Decorators/MessageBrokerMetricsDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Observability/Metrics/Decorators/MessageBrokerMetricsDecorator.cs -------------------------------------------------------------------------------- /src/Micro.Observability/Metrics/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Observability/Metrics/Extensions.cs -------------------------------------------------------------------------------- /src/Micro.Observability/Metrics/IMetrics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Observability/Metrics/IMetrics.cs -------------------------------------------------------------------------------- /src/Micro.Observability/Metrics/MeterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Observability/Metrics/MeterAttribute.cs -------------------------------------------------------------------------------- /src/Micro.Observability/Metrics/Metrics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Observability/Metrics/Metrics.cs -------------------------------------------------------------------------------- /src/Micro.Observability/Metrics/MetricsOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Observability/Metrics/MetricsOptions.cs -------------------------------------------------------------------------------- /src/Micro.Observability/Metrics/ObservableValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Observability/Metrics/ObservableValue.cs -------------------------------------------------------------------------------- /src/Micro.Observability/Micro.Observability.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Observability/Micro.Observability.csproj -------------------------------------------------------------------------------- /src/Micro.Observability/Tracing/Decorators/MessageBrokerTracingDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Observability/Tracing/Decorators/MessageBrokerTracingDecorator.cs -------------------------------------------------------------------------------- /src/Micro.Observability/Tracing/Decorators/MessageHandlerTracingDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Observability/Tracing/Decorators/MessageHandlerTracingDecorator.cs -------------------------------------------------------------------------------- /src/Micro.Observability/Tracing/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Observability/Tracing/Extensions.cs -------------------------------------------------------------------------------- /src/Micro.Observability/Tracing/TracingOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Observability/Tracing/TracingOptions.cs -------------------------------------------------------------------------------- /src/Micro.Security/Encryption/AesEncryptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Security/Encryption/AesEncryptor.cs -------------------------------------------------------------------------------- /src/Micro.Security/Encryption/IEncryptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Security/Encryption/IEncryptor.cs -------------------------------------------------------------------------------- /src/Micro.Security/Encryption/IPasswordManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Security/Encryption/IPasswordManager.cs -------------------------------------------------------------------------------- /src/Micro.Security/Encryption/PasswordManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Security/Encryption/PasswordManager.cs -------------------------------------------------------------------------------- /src/Micro.Security/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Security/Extensions.cs -------------------------------------------------------------------------------- /src/Micro.Security/Hashing/IShaHasher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Security/Hashing/IShaHasher.cs -------------------------------------------------------------------------------- /src/Micro.Security/Hashing/ShaHasher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Security/Hashing/ShaHasher.cs -------------------------------------------------------------------------------- /src/Micro.Security/Micro.Security.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Security/Micro.Security.csproj -------------------------------------------------------------------------------- /src/Micro.Security/Random/IRng.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Security/Random/IRng.cs -------------------------------------------------------------------------------- /src/Micro.Security/Random/Rng.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Security/Random/Rng.cs -------------------------------------------------------------------------------- /src/Micro.Security/SecurityOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Security/SecurityOptions.cs -------------------------------------------------------------------------------- /src/Micro.Security/Signing/ISigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Security/Signing/ISigner.cs -------------------------------------------------------------------------------- /src/Micro.Security/Signing/Signer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Security/Signing/Signer.cs -------------------------------------------------------------------------------- /src/Micro.Security/Vault/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Security/Vault/Extensions.cs -------------------------------------------------------------------------------- /src/Micro.Security/Vault/ICertificatesIssuer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Security/Vault/ICertificatesIssuer.cs -------------------------------------------------------------------------------- /src/Micro.Security/Vault/ICertificatesStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Security/Vault/ICertificatesStore.cs -------------------------------------------------------------------------------- /src/Micro.Security/Vault/IKeyValueSecrets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Security/Vault/IKeyValueSecrets.cs -------------------------------------------------------------------------------- /src/Micro.Security/Vault/ILeaseService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Security/Vault/ILeaseService.cs -------------------------------------------------------------------------------- /src/Micro.Security/Vault/Internals/CertificatesIssuer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Security/Vault/Internals/CertificatesIssuer.cs -------------------------------------------------------------------------------- /src/Micro.Security/Vault/Internals/CertificatesStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Security/Vault/Internals/CertificatesStore.cs -------------------------------------------------------------------------------- /src/Micro.Security/Vault/Internals/EmptyCertificatesIssuer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Security/Vault/Internals/EmptyCertificatesIssuer.cs -------------------------------------------------------------------------------- /src/Micro.Security/Vault/Internals/KeyValueSecrets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Security/Vault/Internals/KeyValueSecrets.cs -------------------------------------------------------------------------------- /src/Micro.Security/Vault/Internals/LeaseService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Security/Vault/Internals/LeaseService.cs -------------------------------------------------------------------------------- /src/Micro.Security/Vault/Internals/VaultHostedService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Security/Vault/Internals/VaultHostedService.cs -------------------------------------------------------------------------------- /src/Micro.Security/Vault/JsonParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Security/Vault/JsonParser.cs -------------------------------------------------------------------------------- /src/Micro.Security/Vault/LeaseData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Security/Vault/LeaseData.cs -------------------------------------------------------------------------------- /src/Micro.Security/Vault/VaultAuthTypeNotSupportedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Security/Vault/VaultAuthTypeNotSupportedException.cs -------------------------------------------------------------------------------- /src/Micro.Security/Vault/VaultException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Security/Vault/VaultException.cs -------------------------------------------------------------------------------- /src/Micro.Security/Vault/VaultOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Security/Vault/VaultOptions.cs -------------------------------------------------------------------------------- /src/Micro.Testing/EndpointContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Testing/EndpointContract.cs -------------------------------------------------------------------------------- /src/Micro.Testing/MessageContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Testing/MessageContract.cs -------------------------------------------------------------------------------- /src/Micro.Testing/Micro.Testing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Testing/Micro.Testing.csproj -------------------------------------------------------------------------------- /src/Micro.Testing/OptionsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Testing/OptionsProvider.cs -------------------------------------------------------------------------------- /src/Micro.Testing/PactBrokerPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Testing/PactBrokerPublisher.cs -------------------------------------------------------------------------------- /src/Micro.Testing/TestApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Testing/TestApp.cs -------------------------------------------------------------------------------- /src/Micro.Testing/TestAuthenticator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Testing/TestAuthenticator.cs -------------------------------------------------------------------------------- /src/Micro.Testing/TestHttpClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Testing/TestHttpClientFactory.cs -------------------------------------------------------------------------------- /src/Micro.Testing/TestMessageBroker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Testing/TestMessageBroker.cs -------------------------------------------------------------------------------- /src/Micro.Testing/TestServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Testing/TestServer.cs -------------------------------------------------------------------------------- /src/Micro.Testing/XUnitOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Testing/XUnitOutput.cs -------------------------------------------------------------------------------- /src/Micro.Transactions/Decorators/OutboxInstantSenderCommandHandlerDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Transactions/Decorators/OutboxInstantSenderCommandHandlerDecorator.cs -------------------------------------------------------------------------------- /src/Micro.Transactions/Decorators/OutboxInstantSenderEventHandlerDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Transactions/Decorators/OutboxInstantSenderEventHandlerDecorator.cs -------------------------------------------------------------------------------- /src/Micro.Transactions/Decorators/TransactionalCommandHandlerDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Transactions/Decorators/TransactionalCommandHandlerDecorator.cs -------------------------------------------------------------------------------- /src/Micro.Transactions/Decorators/TransactionalEventHandlerDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Transactions/Decorators/TransactionalEventHandlerDecorator.cs -------------------------------------------------------------------------------- /src/Micro.Transactions/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Transactions/Extensions.cs -------------------------------------------------------------------------------- /src/Micro.Transactions/Inbox/EfInbox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Transactions/Inbox/EfInbox.cs -------------------------------------------------------------------------------- /src/Micro.Transactions/Inbox/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Transactions/Inbox/Extensions.cs -------------------------------------------------------------------------------- /src/Micro.Transactions/Inbox/IInbox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Transactions/Inbox/IInbox.cs -------------------------------------------------------------------------------- /src/Micro.Transactions/Inbox/InboxCleaner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Transactions/Inbox/InboxCleaner.cs -------------------------------------------------------------------------------- /src/Micro.Transactions/Inbox/InboxCommandHandlerDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Transactions/Inbox/InboxCommandHandlerDecorator.cs -------------------------------------------------------------------------------- /src/Micro.Transactions/Inbox/InboxEventHandlerDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Transactions/Inbox/InboxEventHandlerDecorator.cs -------------------------------------------------------------------------------- /src/Micro.Transactions/Inbox/InboxMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Transactions/Inbox/InboxMessage.cs -------------------------------------------------------------------------------- /src/Micro.Transactions/Inbox/InboxOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Transactions/Inbox/InboxOptions.cs -------------------------------------------------------------------------------- /src/Micro.Transactions/Micro.Transactions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Transactions/Micro.Transactions.csproj -------------------------------------------------------------------------------- /src/Micro.Transactions/Outbox/EfOutbox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Transactions/Outbox/EfOutbox.cs -------------------------------------------------------------------------------- /src/Micro.Transactions/Outbox/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Transactions/Outbox/Extensions.cs -------------------------------------------------------------------------------- /src/Micro.Transactions/Outbox/IOutbox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Transactions/Outbox/IOutbox.cs -------------------------------------------------------------------------------- /src/Micro.Transactions/Outbox/OutboxCleaner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Transactions/Outbox/OutboxCleaner.cs -------------------------------------------------------------------------------- /src/Micro.Transactions/Outbox/OutboxMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Transactions/Outbox/OutboxMessage.cs -------------------------------------------------------------------------------- /src/Micro.Transactions/Outbox/OutboxMessageBroker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Transactions/Outbox/OutboxMessageBroker.cs -------------------------------------------------------------------------------- /src/Micro.Transactions/Outbox/OutboxOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Transactions/Outbox/OutboxOptions.cs -------------------------------------------------------------------------------- /src/Micro.Transactions/Outbox/OutboxSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro.Transactions/Outbox/OutboxSender.cs -------------------------------------------------------------------------------- /src/Micro/Abstractions/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro/Abstractions/ICommand.cs -------------------------------------------------------------------------------- /src/Micro/Abstractions/IEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro/Abstractions/IEvent.cs -------------------------------------------------------------------------------- /src/Micro/Abstractions/IMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro/Abstractions/IMessage.cs -------------------------------------------------------------------------------- /src/Micro/Abstractions/IQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro/Abstractions/IQuery.cs -------------------------------------------------------------------------------- /src/Micro/AppOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro/AppOptions.cs -------------------------------------------------------------------------------- /src/Micro/Attributes/DecoratorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro/Attributes/DecoratorAttribute.cs -------------------------------------------------------------------------------- /src/Micro/Attributes/HiddenAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro/Attributes/HiddenAttribute.cs -------------------------------------------------------------------------------- /src/Micro/Attributes/MessageAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro/Attributes/MessageAttribute.cs -------------------------------------------------------------------------------- /src/Micro/Dispatchers/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro/Dispatchers/Extensions.cs -------------------------------------------------------------------------------- /src/Micro/Dispatchers/InMemoryCommandDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro/Dispatchers/InMemoryCommandDispatcher.cs -------------------------------------------------------------------------------- /src/Micro/Dispatchers/InMemoryDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro/Dispatchers/InMemoryDispatcher.cs -------------------------------------------------------------------------------- /src/Micro/Dispatchers/InMemoryEventDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro/Dispatchers/InMemoryEventDispatcher.cs -------------------------------------------------------------------------------- /src/Micro/Dispatchers/InMemoryQueryDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro/Dispatchers/InMemoryQueryDispatcher.cs -------------------------------------------------------------------------------- /src/Micro/Exceptions/CustomException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro/Exceptions/CustomException.cs -------------------------------------------------------------------------------- /src/Micro/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro/Extensions.cs -------------------------------------------------------------------------------- /src/Micro/Handlers/ICommandDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro/Handlers/ICommandDispatcher.cs -------------------------------------------------------------------------------- /src/Micro/Handlers/ICommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro/Handlers/ICommandHandler.cs -------------------------------------------------------------------------------- /src/Micro/Handlers/IDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro/Handlers/IDispatcher.cs -------------------------------------------------------------------------------- /src/Micro/Handlers/IEventDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro/Handlers/IEventDispatcher.cs -------------------------------------------------------------------------------- /src/Micro/Handlers/IEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro/Handlers/IEventHandler.cs -------------------------------------------------------------------------------- /src/Micro/Handlers/IQueryDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro/Handlers/IQueryDispatcher.cs -------------------------------------------------------------------------------- /src/Micro/Handlers/IQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro/Handlers/IQueryHandler.cs -------------------------------------------------------------------------------- /src/Micro/Identity/IIdGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro/Identity/IIdGen.cs -------------------------------------------------------------------------------- /src/Micro/Identity/IdentityGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro/Identity/IdentityGenerator.cs -------------------------------------------------------------------------------- /src/Micro/Micro.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro/Micro.csproj -------------------------------------------------------------------------------- /src/Micro/Pagination/IPagedQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro/Pagination/IPagedQuery.cs -------------------------------------------------------------------------------- /src/Micro/Pagination/Paged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro/Pagination/Paged.cs -------------------------------------------------------------------------------- /src/Micro/Pagination/PagedBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro/Pagination/PagedBase.cs -------------------------------------------------------------------------------- /src/Micro/Pagination/PagedQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro/Pagination/PagedQuery.cs -------------------------------------------------------------------------------- /src/Micro/Serialization/IJsonSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro/Serialization/IJsonSerializer.cs -------------------------------------------------------------------------------- /src/Micro/Serialization/SystemTextJsonSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro/Serialization/SystemTextJsonSerializer.cs -------------------------------------------------------------------------------- /src/Micro/Time/IClock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro/Time/IClock.cs -------------------------------------------------------------------------------- /src/Micro/Time/UtcClock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/src/Micro/Time/UtcClock.cs -------------------------------------------------------------------------------- /tye.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devmentors/micro-framework/HEAD/tye.yaml --------------------------------------------------------------------------------