├── .github └── workflows │ └── .net-build-uri-helper.yml ├── .gitignore ├── .gitleaks.toml ├── LICENSE ├── README.md ├── scripts └── Azure │ └── README.md ├── src ├── DddDotNet │ ├── .editorconfig │ ├── DddDotNet.Application │ │ ├── ApplicationServicesExtensions.cs │ │ ├── Common │ │ │ ├── Commands │ │ │ │ ├── AddEntityCommand.cs │ │ │ │ ├── AddOrUpdateEntityCommand.cs │ │ │ │ ├── DeleteEntityCommand.cs │ │ │ │ ├── ICommand.cs │ │ │ │ ├── ICommandHandler.cs │ │ │ │ └── UpdateEntityCommand.cs │ │ │ ├── DTOs │ │ │ │ └── Paged.cs │ │ │ ├── Dispatcher.cs │ │ │ ├── HandlerFactory.cs │ │ │ ├── Queries │ │ │ │ ├── GetEntititesQuery.cs │ │ │ │ ├── GetEntityByIdQuery.cs │ │ │ │ ├── IQuery.cs │ │ │ │ └── IQueryHandler.cs │ │ │ ├── Services │ │ │ │ ├── CrudService.cs │ │ │ │ └── ICrudService.cs │ │ │ └── Utils.cs │ │ ├── DddDotNet.Application.csproj │ │ └── Decorators │ │ │ ├── AuditLog │ │ │ ├── AuditLogAttribute.cs │ │ │ ├── AuditLogCommandDecorator.cs │ │ │ └── AuditLogQueryDecorator.cs │ │ │ ├── DatabaseRetry │ │ │ ├── DatabaseRetryAttribute.cs │ │ │ ├── DatabaseRetryCommandDecorator.cs │ │ │ ├── DatabaseRetryDecoratorBase.cs │ │ │ └── DatabaseRetryQueryDecorator.cs │ │ │ └── Mappings.cs │ ├── DddDotNet.AzureFunctions │ │ ├── .gitignore │ │ ├── DddDotNet.AzureFunctions.csproj │ │ ├── FunctionBlobStorageTrigger.cs │ │ ├── FunctionCosmosDbTrigger.cs │ │ ├── FunctionQueueTrigger.cs │ │ ├── FunctionServiceBusTrigger.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── launchSettings.json │ │ │ ├── serviceDependencies.json │ │ │ └── serviceDependencies.local.json │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── host.json │ │ └── local.settings.sample.json │ ├── DddDotNet.CrossCuttingConcerns │ │ ├── Csv │ │ │ ├── ICsvReader.cs │ │ │ └── ICsvWriter.cs │ │ ├── DateTimes │ │ │ └── IDateTimeProvider.cs │ │ ├── DddDotNet.CrossCuttingConcerns.csproj │ │ ├── Excel │ │ │ ├── IExcelReader.cs │ │ │ └── IExcelWriter.cs │ │ ├── Exceptions │ │ │ ├── NotFoundException.cs │ │ │ └── ValidationException.cs │ │ ├── ExtensionMethods │ │ │ ├── CloningExtensions.cs │ │ │ ├── DateTimeExtensions.cs │ │ │ ├── DecimalExtensions.cs │ │ │ ├── GuidExtensions.cs │ │ │ ├── HttpClientExtensions.cs │ │ │ ├── HttpContentExtensions.cs │ │ │ ├── IEnumerableExtensions.cs │ │ │ ├── IQueryableExtensions.cs │ │ │ ├── IntExtensions.cs │ │ │ ├── ListExtensions.cs │ │ │ ├── ObjectExtensions.cs │ │ │ ├── StreamExtensions.cs │ │ │ ├── StringExtensions.cs │ │ │ └── TypeExtensions.cs │ │ ├── Html │ │ │ └── IHtmlWriter.cs │ │ ├── IO │ │ │ ├── IDirectoryService.cs │ │ │ ├── IFileService.cs │ │ │ └── IZipFileService.cs │ │ ├── JsonConverters │ │ │ ├── AllowReadingFromNumberStringJsonConverter.cs │ │ │ └── TrimmingStringJsonConverter.cs │ │ ├── Locks │ │ │ ├── CouldNotAcquireLockException.cs │ │ │ ├── IDistributedLock.cs │ │ │ ├── IDistributedLockScope.cs │ │ │ └── ILockManager.cs │ │ ├── Logging │ │ │ └── ActivityExtensions.cs │ │ ├── ObjectPools │ │ │ └── StringBuilderPool.cs │ │ ├── Pdf │ │ │ └── IPdfWriter.cs │ │ └── Security │ │ │ ├── IHtmlSanitizer.cs │ │ │ └── SecurityUtils.cs │ ├── DddDotNet.Domain │ │ ├── DddDotNet.Domain.csproj │ │ ├── Entities │ │ │ ├── ConfigurationEntry.cs │ │ │ ├── Entity.cs │ │ │ ├── IAggregateRoot.cs │ │ │ ├── IHasKey.cs │ │ │ └── ITrackable.cs │ │ ├── Events │ │ │ ├── EntityCreatedEvent.cs │ │ │ ├── EntityDeletedEvent.cs │ │ │ ├── EntityUpdatedEvent.cs │ │ │ ├── IDomainEvent.cs │ │ │ └── IDomainEventHandler.cs │ │ ├── Infrastructure │ │ │ └── Messaging │ │ │ │ ├── IMessageReceiver.cs │ │ │ │ ├── IMessageSender.cs │ │ │ │ ├── Message.cs │ │ │ │ └── MetaData.cs │ │ ├── Repositories │ │ │ ├── IConcurrencyHandler.cs │ │ │ ├── IRepository.cs │ │ │ └── IUnitOfWork.cs │ │ └── ValueObjects │ │ │ ├── Address.cs │ │ │ ├── DateTimeOffsetRange.cs │ │ │ ├── DateTimeRange.cs │ │ │ └── Money.cs │ ├── DddDotNet.Infrastructure │ │ ├── Caching │ │ │ ├── CachingOptions.cs │ │ │ ├── CachingServiceCollectionExtensions.cs │ │ │ ├── DistributedCacheExtensions.cs │ │ │ └── MemoryCacheExtensions.cs │ │ ├── Configuration │ │ │ ├── AwsSecretsManagerConfigurationProvider.cs │ │ │ ├── ConfigurationCollectionExtensions.cs │ │ │ ├── ConfigurationProviders.cs │ │ │ ├── GoogleCloudSecretManagerConfigurationProvider.cs │ │ │ ├── HashiCorpVaultConfigurationProvider.cs │ │ │ └── SqlConfigurationProvider.cs │ │ ├── Csv │ │ │ ├── ConfigurationEntryCsvReader.cs │ │ │ └── ConfigurationEntryCsvWriter.cs │ │ ├── DateTimes │ │ │ ├── DateTimeProvider.cs │ │ │ └── DateTimeProviderExtensions.cs │ │ ├── DddDotNet.Infrastructure.csproj │ │ ├── Excel │ │ │ ├── ClosedXML │ │ │ │ ├── ConfigurationEntryExcelReader.cs │ │ │ │ ├── ConfigurationEntryExcelWriter.cs │ │ │ │ └── IXLWorksheetExtensions.cs │ │ │ ├── EPPlus │ │ │ │ ├── ConfigurationEntryExcelReader.cs │ │ │ │ ├── ConfigurationEntryExcelWriter.cs │ │ │ │ └── ExcelWorksheetExtensions.cs │ │ │ ├── ExcelDataReader │ │ │ │ └── ConfigurationEntryExcelReader.cs │ │ │ └── OpenXml │ │ │ │ ├── ConfigurationEntryExcelReader.cs │ │ │ │ └── ConfigurationEntryExcelWriter.cs │ │ ├── Grpc │ │ │ └── ChannelFactory.cs │ │ ├── HealthChecks │ │ │ ├── HealthCheckBuilderExtensions.cs │ │ │ ├── HealthChecksResponseWriter.cs │ │ │ ├── HttpHealthCheck.cs │ │ │ ├── NetworkPortCheck.cs │ │ │ └── SqlServerHealthCheck.cs │ │ ├── HostedServices │ │ │ └── CronJobBackgroundService.cs │ │ ├── Html │ │ │ ├── ConfigurationEntryHtmlWriter.cs │ │ │ └── HtmlWriterCollectionExtensions.cs │ │ ├── HttpMessageHandlers │ │ │ └── DebuggingHandler.cs │ │ ├── IO │ │ │ ├── DirectoryService.cs │ │ │ ├── FileService.cs │ │ │ └── ZipFileService.cs │ │ ├── Identity │ │ │ ├── Amazon │ │ │ │ ├── AwsCognitoIdentityOptions.cs │ │ │ │ └── AwsCognitoIdentityProvider.cs │ │ │ ├── AnonymousUser.cs │ │ │ ├── Auth0 │ │ │ │ ├── Auth0Options.cs │ │ │ │ ├── Auth0Provider.cs │ │ │ │ └── Auth0User.cs │ │ │ ├── Azure │ │ │ │ ├── AzureActiveDirectoryB2CProvider.cs │ │ │ │ ├── AzureActiveDirectoryProvider.cs │ │ │ │ ├── AzureAdB2COptions.cs │ │ │ │ └── AzureAdOptions.cs │ │ │ ├── CurrentWebUser.cs │ │ │ ├── GoogleCloud │ │ │ │ ├── GoogleCloudIdentityOptions.cs │ │ │ │ └── GoogleCloudIdentityProvider.cs │ │ │ ├── ICurrentUser.cs │ │ │ ├── IUser.cs │ │ │ └── IUserProvider.cs │ │ ├── Interceptors │ │ │ ├── ErrorCatchingInterceptor.cs │ │ │ ├── InterceptorsOptions.cs │ │ │ ├── LoggingInterceptor.cs │ │ │ ├── Reference.md │ │ │ └── ServiceCollectionServiceExtensions.cs │ │ ├── Localization │ │ │ ├── LocalizationProviders.cs │ │ │ ├── LocalizationServiceCollectionExtensions.cs │ │ │ ├── SqlServerOptions.cs │ │ │ ├── SqlServerStringLocalizer.cs │ │ │ └── SqlServerStringLocalizerFactory.cs │ │ ├── Logging │ │ │ ├── LoggingExtensions.cs │ │ │ └── LoggingOptions.cs │ │ ├── Messaging │ │ │ ├── AmazonEventBridge │ │ │ │ ├── AmazonEventBridgeHealthCheck.cs │ │ │ │ ├── AmazonEventBridgeOptions.cs │ │ │ │ └── AmazonEventBridgeSender.cs │ │ │ ├── AmazonKinesis │ │ │ │ ├── AmazonKinesisHealthCheck.cs │ │ │ │ ├── AmazonKinesisOptions.cs │ │ │ │ └── AmazonKinesisSender.cs │ │ │ ├── AmazonSNS │ │ │ │ ├── AmazonSnsHealthCheck.cs │ │ │ │ ├── AmazonSnsOptions.cs │ │ │ │ └── AmazonSnsSender.cs │ │ │ ├── AmazonSQS │ │ │ │ ├── AmazonSqsHealthCheck.cs │ │ │ │ ├── AmazonSqsOptions.cs │ │ │ │ ├── AmazonSqsReceiver.cs │ │ │ │ └── AmazonSqsSender.cs │ │ │ ├── ApacheActiveMQ │ │ │ │ ├── ApacheActiveMQHealthCheck.cs │ │ │ │ ├── ApacheActiveMQOptions.cs │ │ │ │ ├── ApacheActiveMQReceiver.cs │ │ │ │ └── ApacheActiveMQSender.cs │ │ │ ├── AzureEventGrid │ │ │ │ ├── AzureEventGridHealthCheck.cs │ │ │ │ ├── AzureEventGridOptions.cs │ │ │ │ └── AzureEventGridSender.cs │ │ │ ├── AzureEventHub │ │ │ │ ├── AzureEventHubHealthCheck.cs │ │ │ │ ├── AzureEventHubOptions.cs │ │ │ │ ├── AzureEventHubReceiver.cs │ │ │ │ └── AzureEventHubSender.cs │ │ │ ├── AzureQueue │ │ │ │ ├── AzureQueueOptions.cs │ │ │ │ ├── AzureQueueReceiver.cs │ │ │ │ ├── AzureQueueSender.cs │ │ │ │ └── AzureQueueStorageHealthCheck.cs │ │ │ ├── AzureServiceBus │ │ │ │ ├── AzureServiceBusOptions.cs │ │ │ │ ├── AzureServiceBusQueueHealthCheck.cs │ │ │ │ ├── AzureServiceBusQueueReceiver.cs │ │ │ │ ├── AzureServiceBusQueueSender.cs │ │ │ │ ├── AzureServiceBusSubscriptionHealthCheck.cs │ │ │ │ ├── AzureServiceBusSubscriptionReceiver.cs │ │ │ │ ├── AzureServiceBusTopicHealthCheck.cs │ │ │ │ └── AzureServiceBusTopicSender.cs │ │ │ ├── Fake │ │ │ │ ├── FakeReceiver.cs │ │ │ │ └── FakeSender.cs │ │ │ ├── GooglePubSub │ │ │ │ ├── GooglePubSubHealthCheck.cs │ │ │ │ ├── GooglePubSubOptions.cs │ │ │ │ ├── GooglePubSubReceiver.cs │ │ │ │ └── GooglePubSubSender.cs │ │ │ ├── Kafka │ │ │ │ ├── KafkaHealthCheck.cs │ │ │ │ ├── KafkaOptions.cs │ │ │ │ ├── KafkaReceiver.cs │ │ │ │ ├── KafkaReceiverOptions.cs │ │ │ │ └── KafkaSender.cs │ │ │ ├── MessagingCollectionExtensions.cs │ │ │ ├── MessagingOptions.cs │ │ │ └── RabbitMQ │ │ │ │ ├── RabbitMQHealthCheck.cs │ │ │ │ ├── RabbitMQOptions.cs │ │ │ │ ├── RabbitMQReceiver.cs │ │ │ │ ├── RabbitMQReceiverOptions.cs │ │ │ │ ├── RabbitMQSender.cs │ │ │ │ └── RabbitMQSenderOptions.cs │ │ ├── Monitoring │ │ │ ├── AzureApplicationInsights │ │ │ │ ├── AzureApplicationInsightsOptions.cs │ │ │ │ ├── AzureApplicationInsightsServiceCollectionExtensions.cs │ │ │ │ ├── CustomTelemetryInitializer.cs │ │ │ │ └── CustomTelemetryProcessor.cs │ │ │ ├── MiniProfiler │ │ │ │ ├── MiniProfilerOptions.cs │ │ │ │ └── MiniProfilerServiceCollectionExtensions.cs │ │ │ ├── MonitoringExtensions.cs │ │ │ ├── MonitoringOptions.cs │ │ │ └── OpenTelemetry │ │ │ │ ├── OpenTelemetryExtensions.cs │ │ │ │ └── OpenTelemetryOptions.cs │ │ ├── Notification │ │ │ ├── Email │ │ │ │ ├── Amazon │ │ │ │ │ ├── AmazonSesHealthCheck.cs │ │ │ │ │ ├── AmazonSesNotification.cs │ │ │ │ │ └── AmazonSesOptions.cs │ │ │ │ ├── EmailNotificationServiceCollectionExtensions.cs │ │ │ │ ├── EmailOptions.cs │ │ │ │ ├── Fake │ │ │ │ │ └── FakeEmailNotification.cs │ │ │ │ ├── IEmailNotification.cs │ │ │ │ ├── MailKit │ │ │ │ │ ├── MailKitEmailNotification.cs │ │ │ │ │ ├── MailKitHealthCheck.cs │ │ │ │ │ └── MailKitOptions.cs │ │ │ │ ├── SendGrid │ │ │ │ │ ├── SendGridEmailNotification.cs │ │ │ │ │ ├── SendGridException.cs │ │ │ │ │ ├── SendGridHealthCheck.cs │ │ │ │ │ └── SendGridOptions.cs │ │ │ │ └── Smtp │ │ │ │ │ ├── SmtpEmailNotification.cs │ │ │ │ │ ├── SmtpHealthCheck.cs │ │ │ │ │ └── SmtpOptions.cs │ │ │ ├── NotificationOptions.cs │ │ │ ├── NotificationServiceCollectionExtensions.cs │ │ │ ├── Sms │ │ │ │ ├── Amazon │ │ │ │ │ ├── AmazonOptions.cs │ │ │ │ │ └── AmazonSmsNotification.cs │ │ │ │ ├── Azure │ │ │ │ │ ├── AzureOptions.cs │ │ │ │ │ └── AzureSmsNotification.cs │ │ │ │ ├── Fake │ │ │ │ │ └── FakeSmsNotification.cs │ │ │ │ ├── ISmsNotification.cs │ │ │ │ ├── SmsNotificationServiceCollectionExtensions.cs │ │ │ │ ├── SmsOptions.cs │ │ │ │ └── Twilio │ │ │ │ │ ├── TwilioHealthCheck.cs │ │ │ │ │ ├── TwilioOptions.cs │ │ │ │ │ └── TwilioSmsNotification.cs │ │ │ └── Web │ │ │ │ ├── Fake │ │ │ │ └── FakeWebNotification.cs │ │ │ │ ├── IWebNotification.cs │ │ │ │ ├── SignalR │ │ │ │ ├── SignalRHealthCheck.cs │ │ │ │ ├── SignalRNotification.cs │ │ │ │ └── SignalROptions.cs │ │ │ │ ├── WebNotificationServiceCollectionExtensions.cs │ │ │ │ └── WebOptions.cs │ │ ├── Pdf │ │ │ ├── DinkToPdf │ │ │ │ ├── ConfigurationEntryPdfWriter.cs │ │ │ │ └── DinkToPdfCollectionExtensions.cs │ │ │ └── PuppeteerSharp │ │ │ │ ├── ConfigurationEntryPdfWriter.cs │ │ │ │ └── PuppeteerSharpCollectionExtensions.cs │ │ ├── Security │ │ │ └── HtmlSanitizer.cs │ │ ├── Storages │ │ │ ├── Amazon │ │ │ │ ├── AmazonOptions.cs │ │ │ │ ├── AmazonS3HealthCheck.cs │ │ │ │ └── AmazonS3StorageManager.cs │ │ │ ├── Azure │ │ │ │ ├── AzureBlobOptions.cs │ │ │ │ ├── AzureBlobStorageHealthCheck.cs │ │ │ │ ├── AzureBlobStorageManager.cs │ │ │ │ ├── AzureFileShareOptions.cs │ │ │ │ └── AzureFileShareStorageManager.cs │ │ │ ├── Fake │ │ │ │ └── FakeStorageManager.cs │ │ │ ├── Ftp │ │ │ │ ├── FtpHealthCheck.cs │ │ │ │ ├── FtpOptions.cs │ │ │ │ └── FtpStorageManager.cs │ │ │ ├── Google │ │ │ │ ├── GoogleCloudStorageHealthCheck.cs │ │ │ │ ├── GoogleCloudStorageManager.cs │ │ │ │ └── GoogleCloudStorageOptions.cs │ │ │ ├── IFileStorageManager.cs │ │ │ ├── Local │ │ │ │ ├── LocalFileHealthCheck.cs │ │ │ │ ├── LocalFileStorageManager.cs │ │ │ │ └── LocalOptions.cs │ │ │ ├── Sftp │ │ │ │ ├── SftpOptions.cs │ │ │ │ ├── SftpStorageHealthCheck.cs │ │ │ │ └── SftpStorageManager.cs │ │ │ ├── SharePointOnline │ │ │ │ ├── SharePointOnlineHealthCheck.cs │ │ │ │ ├── SharePointOnlineOptions.cs │ │ │ │ └── SharePointOnlineStorageManager.cs │ │ │ ├── Smb │ │ │ │ ├── SmbFileShareOptions.cs │ │ │ │ └── SmbFileShareStorageManager.cs │ │ │ ├── StorageOptions.cs │ │ │ ├── StoragesCollectionExtensions.cs │ │ │ └── WindowsNetworkShare │ │ │ │ ├── Win32NetResource.cs │ │ │ │ ├── Win32NetworkShareOptions.cs │ │ │ │ └── Win32NetworkShareStorageManager.cs │ │ └── Web │ │ │ ├── Authorization │ │ │ ├── Policies │ │ │ │ └── CustomAuthorizationPolicyProvider.cs │ │ │ ├── Requirements │ │ │ │ └── PermissionRequirement.cs │ │ │ └── ServiceCollectionExtensions.cs │ │ │ ├── ClaimsTransformations │ │ │ └── CustomClaimsTransformation.cs │ │ │ └── Middleware │ │ │ ├── AccessTokenFromFormMiddleware.cs │ │ │ ├── DebuggingMiddleware.cs │ │ │ ├── GlobalExceptionHandlerMiddleware.cs │ │ │ ├── IApplicationBuilderExtensions.cs │ │ │ ├── IPFilteringMiddleware.cs │ │ │ ├── LoggingStatusCodeMiddleware.cs │ │ │ ├── SecurityHeadersMiddleware.cs │ │ │ └── SwaggerBasicAuthMiddleware.cs │ ├── DddDotNet.IntegrationTests │ │ ├── Caching │ │ │ ├── CosmosDistributedCachePerformanceTests.cs │ │ │ ├── CosmosDistributedCacheTests.cs │ │ │ ├── DistributedCacheExtensionsTests.cs │ │ │ └── MemoryCacheExtensionsTests.cs │ │ ├── Configuration │ │ │ ├── AwsSecretsManagerConfigurationProviderTests.cs │ │ │ ├── AwsSystemsManagerConfigurationProviderTests.cs │ │ │ ├── GoogleCloudSecretManagerConfigurationProviderTests.cs │ │ │ └── HashiCorpVaultConfigurationProviderTests.cs │ │ ├── Csv │ │ │ ├── ConfigurationEntries.csv │ │ │ └── ConfigurationEntryCsvTests.cs │ │ ├── DddDotNet.IntegrationTests.csproj │ │ ├── Excel │ │ │ ├── ClosedXML │ │ │ │ └── ConfigurationEntryExcelTests.cs │ │ │ ├── ConfigurationEntries.xlsx │ │ │ ├── EPPlus │ │ │ │ └── ConfigurationEntryExcelTests.cs │ │ │ ├── ExcelDataReader │ │ │ │ └── ConfigurationEntryExcelTests.cs │ │ │ └── OpenXml │ │ │ │ └── ConfigurationEntryExcelTests.cs │ │ ├── Identity │ │ │ ├── Auth0ProviderTests.cs │ │ │ ├── AwsCognitoIdentityProviderTests.cs │ │ │ ├── AzureActiveDirectoryB2CProviderTests.cs │ │ │ ├── AzureActiveDirectoryProviderTests.cs │ │ │ └── GoogleCloudIdentityProviderTests.cs │ │ ├── Messaging │ │ │ ├── AmazonEventBridgeSenderTests.cs │ │ │ ├── AmazonKinesisSenderTests.cs │ │ │ ├── AmazonSnsSenderTests.cs │ │ │ ├── AmazonSqsSenderTests.cs │ │ │ ├── ApacheActiveMQSenderTests.cs │ │ │ ├── AzureEventGridSenderTests.cs │ │ │ ├── AzureEventHubSenderTests.cs │ │ │ ├── AzureQueueSenderTests.cs │ │ │ ├── AzureServiceBusQueueSenderTests.cs │ │ │ ├── AzureServiceBusTopicSenderTests.cs │ │ │ ├── GooglePubSubSenderTests.cs │ │ │ ├── KafkaSenderTests.cs │ │ │ ├── Message.cs │ │ │ └── RabbitMQSenderTests.cs │ │ ├── Notification │ │ │ ├── Email │ │ │ │ ├── AmazonSesNotificationTests.cs │ │ │ │ ├── MailKitEmailNotificationTests.cs │ │ │ │ ├── SendGridEmailNotificationTests.cs │ │ │ │ └── SmtpEmailNotificationTests.cs │ │ │ └── Sms │ │ │ │ └── TwilioSmsNotificationTests.cs │ │ ├── Storages │ │ │ ├── AmazonS3StorageManagerTests.cs │ │ │ ├── AzureBlobStorageManagerTests.cs │ │ │ ├── AzureFileShareStorageManagerTests.cs │ │ │ ├── FtpStorageManagerTests.cs │ │ │ ├── GoogleCloudStorageManagerTests.cs │ │ │ ├── LocalFileStorageManagerTests.cs │ │ │ ├── SftpStorageManagerTests.cs │ │ │ ├── SharePointOnlineStorageManagerTests.cs │ │ │ ├── SmbFileShareStorageManagerTests.cs │ │ │ └── Win32NetworkShareStorageManagerTests.cs │ │ └── appsettings.json │ ├── DddDotNet.MessageReceivers.AzureServiceBus │ │ ├── DddDotNet.MessageReceivers.AzureServiceBus.csproj │ │ ├── Program.cs │ │ └── appsettings.json │ ├── DddDotNet.MessageReceivers.RabbitMQ │ │ ├── DddDotNet.MessageReceivers.RabbitMQ.csproj │ │ ├── Program.cs │ │ └── appsettings.json │ ├── DddDotNet.MessageReceivers │ │ ├── DddDotNet.MessageReceivers.csproj │ │ ├── Program.cs │ │ └── appsettings.json │ ├── DddDotNet.sln │ ├── Directory.Build.props │ ├── azure-pipelines.yml │ └── global.json └── UriHelper │ ├── UriHelper.Benchmarks │ ├── Program.cs │ ├── UriHelper.Benchmarks.csproj │ └── UriPathBenchmarks.cs │ ├── UriHelper.Tests │ ├── UriHelper.Tests.csproj │ └── UriPathTests.cs │ ├── UriHelper.sln │ └── UriHelper │ ├── StringBuilderPool.cs │ ├── UriHelper.csproj │ ├── UriPath.cs │ └── UriPathInternal.cs └── tools ├── kafka-single-node └── docker-compose.yml ├── rabbitmq-cluster ├── .env ├── README.md ├── docker-compose.yml └── haproxy.cfg └── rabbitmq └── docker-compose.yml /.github/workflows/.net-build-uri-helper.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/.github/workflows/.net-build-uri-helper.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitleaks.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/.gitleaks.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/README.md -------------------------------------------------------------------------------- /scripts/Azure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/scripts/Azure/README.md -------------------------------------------------------------------------------- /src/DddDotNet/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/.editorconfig -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Application/ApplicationServicesExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Application/ApplicationServicesExtensions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Application/Common/Commands/AddEntityCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Application/Common/Commands/AddEntityCommand.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Application/Common/Commands/AddOrUpdateEntityCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Application/Common/Commands/AddOrUpdateEntityCommand.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Application/Common/Commands/DeleteEntityCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Application/Common/Commands/DeleteEntityCommand.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Application/Common/Commands/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Application/Common/Commands/ICommand.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Application/Common/Commands/ICommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Application/Common/Commands/ICommandHandler.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Application/Common/Commands/UpdateEntityCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Application/Common/Commands/UpdateEntityCommand.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Application/Common/DTOs/Paged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Application/Common/DTOs/Paged.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Application/Common/Dispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Application/Common/Dispatcher.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Application/Common/HandlerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Application/Common/HandlerFactory.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Application/Common/Queries/GetEntititesQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Application/Common/Queries/GetEntititesQuery.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Application/Common/Queries/GetEntityByIdQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Application/Common/Queries/GetEntityByIdQuery.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Application/Common/Queries/IQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Application/Common/Queries/IQuery.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Application/Common/Queries/IQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Application/Common/Queries/IQueryHandler.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Application/Common/Services/CrudService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Application/Common/Services/CrudService.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Application/Common/Services/ICrudService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Application/Common/Services/ICrudService.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Application/Common/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Application/Common/Utils.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Application/DddDotNet.Application.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Application/DddDotNet.Application.csproj -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Application/Decorators/AuditLog/AuditLogAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Application/Decorators/AuditLog/AuditLogAttribute.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Application/Decorators/AuditLog/AuditLogCommandDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Application/Decorators/AuditLog/AuditLogCommandDecorator.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Application/Decorators/AuditLog/AuditLogQueryDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Application/Decorators/AuditLog/AuditLogQueryDecorator.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Application/Decorators/DatabaseRetry/DatabaseRetryAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Application/Decorators/DatabaseRetry/DatabaseRetryAttribute.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Application/Decorators/DatabaseRetry/DatabaseRetryCommandDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Application/Decorators/DatabaseRetry/DatabaseRetryCommandDecorator.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Application/Decorators/DatabaseRetry/DatabaseRetryDecoratorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Application/Decorators/DatabaseRetry/DatabaseRetryDecoratorBase.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Application/Decorators/DatabaseRetry/DatabaseRetryQueryDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Application/Decorators/DatabaseRetry/DatabaseRetryQueryDecorator.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Application/Decorators/Mappings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Application/Decorators/Mappings.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.AzureFunctions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.AzureFunctions/.gitignore -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.AzureFunctions/DddDotNet.AzureFunctions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.AzureFunctions/DddDotNet.AzureFunctions.csproj -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.AzureFunctions/FunctionBlobStorageTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.AzureFunctions/FunctionBlobStorageTrigger.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.AzureFunctions/FunctionCosmosDbTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.AzureFunctions/FunctionCosmosDbTrigger.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.AzureFunctions/FunctionQueueTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.AzureFunctions/FunctionQueueTrigger.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.AzureFunctions/FunctionServiceBusTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.AzureFunctions/FunctionServiceBusTrigger.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.AzureFunctions/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.AzureFunctions/Program.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.AzureFunctions/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.AzureFunctions/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.AzureFunctions/Properties/serviceDependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.AzureFunctions/Properties/serviceDependencies.json -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.AzureFunctions/Properties/serviceDependencies.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.AzureFunctions/Properties/serviceDependencies.local.json -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.AzureFunctions/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.AzureFunctions/appsettings.Development.json -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.AzureFunctions/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.AzureFunctions/appsettings.json -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.AzureFunctions/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.AzureFunctions/host.json -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.AzureFunctions/local.settings.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.AzureFunctions/local.settings.sample.json -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.CrossCuttingConcerns/Csv/ICsvReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.CrossCuttingConcerns/Csv/ICsvReader.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.CrossCuttingConcerns/Csv/ICsvWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.CrossCuttingConcerns/Csv/ICsvWriter.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.CrossCuttingConcerns/DateTimes/IDateTimeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.CrossCuttingConcerns/DateTimes/IDateTimeProvider.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.CrossCuttingConcerns/DddDotNet.CrossCuttingConcerns.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.CrossCuttingConcerns/DddDotNet.CrossCuttingConcerns.csproj -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.CrossCuttingConcerns/Excel/IExcelReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.CrossCuttingConcerns/Excel/IExcelReader.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.CrossCuttingConcerns/Excel/IExcelWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.CrossCuttingConcerns/Excel/IExcelWriter.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.CrossCuttingConcerns/Exceptions/NotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.CrossCuttingConcerns/Exceptions/NotFoundException.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.CrossCuttingConcerns/Exceptions/ValidationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.CrossCuttingConcerns/Exceptions/ValidationException.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.CrossCuttingConcerns/ExtensionMethods/CloningExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.CrossCuttingConcerns/ExtensionMethods/CloningExtensions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.CrossCuttingConcerns/ExtensionMethods/DateTimeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.CrossCuttingConcerns/ExtensionMethods/DateTimeExtensions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.CrossCuttingConcerns/ExtensionMethods/DecimalExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.CrossCuttingConcerns/ExtensionMethods/DecimalExtensions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.CrossCuttingConcerns/ExtensionMethods/GuidExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.CrossCuttingConcerns/ExtensionMethods/GuidExtensions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.CrossCuttingConcerns/ExtensionMethods/HttpClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.CrossCuttingConcerns/ExtensionMethods/HttpClientExtensions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.CrossCuttingConcerns/ExtensionMethods/HttpContentExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.CrossCuttingConcerns/ExtensionMethods/HttpContentExtensions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.CrossCuttingConcerns/ExtensionMethods/IEnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.CrossCuttingConcerns/ExtensionMethods/IEnumerableExtensions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.CrossCuttingConcerns/ExtensionMethods/IQueryableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.CrossCuttingConcerns/ExtensionMethods/IQueryableExtensions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.CrossCuttingConcerns/ExtensionMethods/IntExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.CrossCuttingConcerns/ExtensionMethods/IntExtensions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.CrossCuttingConcerns/ExtensionMethods/ListExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.CrossCuttingConcerns/ExtensionMethods/ListExtensions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.CrossCuttingConcerns/ExtensionMethods/ObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.CrossCuttingConcerns/ExtensionMethods/ObjectExtensions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.CrossCuttingConcerns/ExtensionMethods/StreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.CrossCuttingConcerns/ExtensionMethods/StreamExtensions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.CrossCuttingConcerns/ExtensionMethods/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.CrossCuttingConcerns/ExtensionMethods/StringExtensions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.CrossCuttingConcerns/ExtensionMethods/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.CrossCuttingConcerns/ExtensionMethods/TypeExtensions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.CrossCuttingConcerns/Html/IHtmlWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.CrossCuttingConcerns/Html/IHtmlWriter.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.CrossCuttingConcerns/IO/IDirectoryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.CrossCuttingConcerns/IO/IDirectoryService.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.CrossCuttingConcerns/IO/IFileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.CrossCuttingConcerns/IO/IFileService.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.CrossCuttingConcerns/IO/IZipFileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.CrossCuttingConcerns/IO/IZipFileService.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.CrossCuttingConcerns/JsonConverters/AllowReadingFromNumberStringJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.CrossCuttingConcerns/JsonConverters/AllowReadingFromNumberStringJsonConverter.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.CrossCuttingConcerns/JsonConverters/TrimmingStringJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.CrossCuttingConcerns/JsonConverters/TrimmingStringJsonConverter.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.CrossCuttingConcerns/Locks/CouldNotAcquireLockException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.CrossCuttingConcerns/Locks/CouldNotAcquireLockException.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.CrossCuttingConcerns/Locks/IDistributedLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.CrossCuttingConcerns/Locks/IDistributedLock.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.CrossCuttingConcerns/Locks/IDistributedLockScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.CrossCuttingConcerns/Locks/IDistributedLockScope.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.CrossCuttingConcerns/Locks/ILockManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.CrossCuttingConcerns/Locks/ILockManager.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.CrossCuttingConcerns/Logging/ActivityExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.CrossCuttingConcerns/Logging/ActivityExtensions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.CrossCuttingConcerns/ObjectPools/StringBuilderPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.CrossCuttingConcerns/ObjectPools/StringBuilderPool.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.CrossCuttingConcerns/Pdf/IPdfWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.CrossCuttingConcerns/Pdf/IPdfWriter.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.CrossCuttingConcerns/Security/IHtmlSanitizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.CrossCuttingConcerns/Security/IHtmlSanitizer.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.CrossCuttingConcerns/Security/SecurityUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.CrossCuttingConcerns/Security/SecurityUtils.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Domain/DddDotNet.Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Domain/DddDotNet.Domain.csproj -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Domain/Entities/ConfigurationEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Domain/Entities/ConfigurationEntry.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Domain/Entities/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Domain/Entities/Entity.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Domain/Entities/IAggregateRoot.cs: -------------------------------------------------------------------------------- 1 | namespace DddDotNet.Domain.Entities; 2 | 3 | public interface IAggregateRoot 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Domain/Entities/IHasKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Domain/Entities/IHasKey.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Domain/Entities/ITrackable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Domain/Entities/ITrackable.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Domain/Events/EntityCreatedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Domain/Events/EntityCreatedEvent.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Domain/Events/EntityDeletedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Domain/Events/EntityDeletedEvent.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Domain/Events/EntityUpdatedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Domain/Events/EntityUpdatedEvent.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Domain/Events/IDomainEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Domain/Events/IDomainEvent.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Domain/Events/IDomainEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Domain/Events/IDomainEventHandler.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Domain/Infrastructure/Messaging/IMessageReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Domain/Infrastructure/Messaging/IMessageReceiver.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Domain/Infrastructure/Messaging/IMessageSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Domain/Infrastructure/Messaging/IMessageSender.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Domain/Infrastructure/Messaging/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Domain/Infrastructure/Messaging/Message.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Domain/Infrastructure/Messaging/MetaData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Domain/Infrastructure/Messaging/MetaData.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Domain/Repositories/IConcurrencyHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Domain/Repositories/IConcurrencyHandler.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Domain/Repositories/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Domain/Repositories/IRepository.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Domain/Repositories/IUnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Domain/Repositories/IUnitOfWork.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Domain/ValueObjects/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Domain/ValueObjects/Address.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Domain/ValueObjects/DateTimeOffsetRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Domain/ValueObjects/DateTimeOffsetRange.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Domain/ValueObjects/DateTimeRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Domain/ValueObjects/DateTimeRange.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Domain/ValueObjects/Money.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Domain/ValueObjects/Money.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Caching/CachingOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Caching/CachingOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Caching/CachingServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Caching/CachingServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Caching/DistributedCacheExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Caching/DistributedCacheExtensions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Caching/MemoryCacheExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Caching/MemoryCacheExtensions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Configuration/AwsSecretsManagerConfigurationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Configuration/AwsSecretsManagerConfigurationProvider.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Configuration/ConfigurationCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Configuration/ConfigurationCollectionExtensions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Configuration/ConfigurationProviders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Configuration/ConfigurationProviders.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Configuration/GoogleCloudSecretManagerConfigurationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Configuration/GoogleCloudSecretManagerConfigurationProvider.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Configuration/HashiCorpVaultConfigurationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Configuration/HashiCorpVaultConfigurationProvider.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Configuration/SqlConfigurationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Configuration/SqlConfigurationProvider.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Csv/ConfigurationEntryCsvReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Csv/ConfigurationEntryCsvReader.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Csv/ConfigurationEntryCsvWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Csv/ConfigurationEntryCsvWriter.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/DateTimes/DateTimeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/DateTimes/DateTimeProvider.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/DateTimes/DateTimeProviderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/DateTimes/DateTimeProviderExtensions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/DddDotNet.Infrastructure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/DddDotNet.Infrastructure.csproj -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Excel/ClosedXML/ConfigurationEntryExcelReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Excel/ClosedXML/ConfigurationEntryExcelReader.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Excel/ClosedXML/ConfigurationEntryExcelWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Excel/ClosedXML/ConfigurationEntryExcelWriter.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Excel/ClosedXML/IXLWorksheetExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Excel/ClosedXML/IXLWorksheetExtensions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Excel/EPPlus/ConfigurationEntryExcelReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Excel/EPPlus/ConfigurationEntryExcelReader.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Excel/EPPlus/ConfigurationEntryExcelWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Excel/EPPlus/ConfigurationEntryExcelWriter.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Excel/EPPlus/ExcelWorksheetExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Excel/EPPlus/ExcelWorksheetExtensions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Excel/ExcelDataReader/ConfigurationEntryExcelReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Excel/ExcelDataReader/ConfigurationEntryExcelReader.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Excel/OpenXml/ConfigurationEntryExcelReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Excel/OpenXml/ConfigurationEntryExcelReader.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Excel/OpenXml/ConfigurationEntryExcelWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Excel/OpenXml/ConfigurationEntryExcelWriter.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Grpc/ChannelFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Grpc/ChannelFactory.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/HealthChecks/HealthCheckBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/HealthChecks/HealthCheckBuilderExtensions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/HealthChecks/HealthChecksResponseWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/HealthChecks/HealthChecksResponseWriter.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/HealthChecks/HttpHealthCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/HealthChecks/HttpHealthCheck.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/HealthChecks/NetworkPortCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/HealthChecks/NetworkPortCheck.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/HealthChecks/SqlServerHealthCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/HealthChecks/SqlServerHealthCheck.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/HostedServices/CronJobBackgroundService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/HostedServices/CronJobBackgroundService.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Html/ConfigurationEntryHtmlWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Html/ConfigurationEntryHtmlWriter.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Html/HtmlWriterCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Html/HtmlWriterCollectionExtensions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/HttpMessageHandlers/DebuggingHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/HttpMessageHandlers/DebuggingHandler.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/IO/DirectoryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/IO/DirectoryService.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/IO/FileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/IO/FileService.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/IO/ZipFileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/IO/ZipFileService.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Identity/Amazon/AwsCognitoIdentityOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Identity/Amazon/AwsCognitoIdentityOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Identity/Amazon/AwsCognitoIdentityProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Identity/Amazon/AwsCognitoIdentityProvider.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Identity/AnonymousUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Identity/AnonymousUser.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Identity/Auth0/Auth0Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Identity/Auth0/Auth0Options.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Identity/Auth0/Auth0Provider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Identity/Auth0/Auth0Provider.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Identity/Auth0/Auth0User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Identity/Auth0/Auth0User.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Identity/Azure/AzureActiveDirectoryB2CProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Identity/Azure/AzureActiveDirectoryB2CProvider.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Identity/Azure/AzureActiveDirectoryProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Identity/Azure/AzureActiveDirectoryProvider.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Identity/Azure/AzureAdB2COptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Identity/Azure/AzureAdB2COptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Identity/Azure/AzureAdOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Identity/Azure/AzureAdOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Identity/CurrentWebUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Identity/CurrentWebUser.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Identity/GoogleCloud/GoogleCloudIdentityOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Identity/GoogleCloud/GoogleCloudIdentityOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Identity/GoogleCloud/GoogleCloudIdentityProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Identity/GoogleCloud/GoogleCloudIdentityProvider.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Identity/ICurrentUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Identity/ICurrentUser.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Identity/IUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Identity/IUser.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Identity/IUserProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Identity/IUserProvider.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Interceptors/ErrorCatchingInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Interceptors/ErrorCatchingInterceptor.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Interceptors/InterceptorsOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Interceptors/InterceptorsOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Interceptors/LoggingInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Interceptors/LoggingInterceptor.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Interceptors/Reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Interceptors/Reference.md -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Interceptors/ServiceCollectionServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Interceptors/ServiceCollectionServiceExtensions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Localization/LocalizationProviders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Localization/LocalizationProviders.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Localization/LocalizationServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Localization/LocalizationServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Localization/SqlServerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Localization/SqlServerOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Localization/SqlServerStringLocalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Localization/SqlServerStringLocalizer.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Localization/SqlServerStringLocalizerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Localization/SqlServerStringLocalizerFactory.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Logging/LoggingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Logging/LoggingExtensions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Logging/LoggingOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Logging/LoggingOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/AmazonEventBridge/AmazonEventBridgeHealthCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/AmazonEventBridge/AmazonEventBridgeHealthCheck.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/AmazonEventBridge/AmazonEventBridgeOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/AmazonEventBridge/AmazonEventBridgeOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/AmazonEventBridge/AmazonEventBridgeSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/AmazonEventBridge/AmazonEventBridgeSender.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/AmazonKinesis/AmazonKinesisHealthCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/AmazonKinesis/AmazonKinesisHealthCheck.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/AmazonKinesis/AmazonKinesisOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/AmazonKinesis/AmazonKinesisOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/AmazonKinesis/AmazonKinesisSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/AmazonKinesis/AmazonKinesisSender.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/AmazonSNS/AmazonSnsHealthCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/AmazonSNS/AmazonSnsHealthCheck.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/AmazonSNS/AmazonSnsOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/AmazonSNS/AmazonSnsOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/AmazonSNS/AmazonSnsSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/AmazonSNS/AmazonSnsSender.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/AmazonSQS/AmazonSqsHealthCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/AmazonSQS/AmazonSqsHealthCheck.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/AmazonSQS/AmazonSqsOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/AmazonSQS/AmazonSqsOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/AmazonSQS/AmazonSqsReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/AmazonSQS/AmazonSqsReceiver.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/AmazonSQS/AmazonSqsSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/AmazonSQS/AmazonSqsSender.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/ApacheActiveMQ/ApacheActiveMQHealthCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/ApacheActiveMQ/ApacheActiveMQHealthCheck.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/ApacheActiveMQ/ApacheActiveMQOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/ApacheActiveMQ/ApacheActiveMQOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/ApacheActiveMQ/ApacheActiveMQReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/ApacheActiveMQ/ApacheActiveMQReceiver.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/ApacheActiveMQ/ApacheActiveMQSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/ApacheActiveMQ/ApacheActiveMQSender.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/AzureEventGrid/AzureEventGridHealthCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/AzureEventGrid/AzureEventGridHealthCheck.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/AzureEventGrid/AzureEventGridOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/AzureEventGrid/AzureEventGridOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/AzureEventGrid/AzureEventGridSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/AzureEventGrid/AzureEventGridSender.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/AzureEventHub/AzureEventHubHealthCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/AzureEventHub/AzureEventHubHealthCheck.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/AzureEventHub/AzureEventHubOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/AzureEventHub/AzureEventHubOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/AzureEventHub/AzureEventHubReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/AzureEventHub/AzureEventHubReceiver.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/AzureEventHub/AzureEventHubSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/AzureEventHub/AzureEventHubSender.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/AzureQueue/AzureQueueOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/AzureQueue/AzureQueueOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/AzureQueue/AzureQueueReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/AzureQueue/AzureQueueReceiver.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/AzureQueue/AzureQueueSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/AzureQueue/AzureQueueSender.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/AzureQueue/AzureQueueStorageHealthCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/AzureQueue/AzureQueueStorageHealthCheck.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/AzureServiceBus/AzureServiceBusOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/AzureServiceBus/AzureServiceBusOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/AzureServiceBus/AzureServiceBusQueueHealthCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/AzureServiceBus/AzureServiceBusQueueHealthCheck.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/AzureServiceBus/AzureServiceBusQueueReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/AzureServiceBus/AzureServiceBusQueueReceiver.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/AzureServiceBus/AzureServiceBusQueueSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/AzureServiceBus/AzureServiceBusQueueSender.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/AzureServiceBus/AzureServiceBusSubscriptionHealthCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/AzureServiceBus/AzureServiceBusSubscriptionHealthCheck.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/AzureServiceBus/AzureServiceBusSubscriptionReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/AzureServiceBus/AzureServiceBusSubscriptionReceiver.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/AzureServiceBus/AzureServiceBusTopicHealthCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/AzureServiceBus/AzureServiceBusTopicHealthCheck.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/AzureServiceBus/AzureServiceBusTopicSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/AzureServiceBus/AzureServiceBusTopicSender.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/Fake/FakeReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/Fake/FakeReceiver.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/Fake/FakeSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/Fake/FakeSender.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/GooglePubSub/GooglePubSubHealthCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/GooglePubSub/GooglePubSubHealthCheck.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/GooglePubSub/GooglePubSubOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/GooglePubSub/GooglePubSubOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/GooglePubSub/GooglePubSubReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/GooglePubSub/GooglePubSubReceiver.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/GooglePubSub/GooglePubSubSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/GooglePubSub/GooglePubSubSender.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/Kafka/KafkaHealthCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/Kafka/KafkaHealthCheck.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/Kafka/KafkaOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/Kafka/KafkaOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/Kafka/KafkaReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/Kafka/KafkaReceiver.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/Kafka/KafkaReceiverOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/Kafka/KafkaReceiverOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/Kafka/KafkaSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/Kafka/KafkaSender.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/MessagingCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/MessagingCollectionExtensions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/MessagingOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/MessagingOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/RabbitMQ/RabbitMQHealthCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/RabbitMQ/RabbitMQHealthCheck.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/RabbitMQ/RabbitMQOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/RabbitMQ/RabbitMQOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/RabbitMQ/RabbitMQReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/RabbitMQ/RabbitMQReceiver.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/RabbitMQ/RabbitMQReceiverOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/RabbitMQ/RabbitMQReceiverOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/RabbitMQ/RabbitMQSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/RabbitMQ/RabbitMQSender.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Messaging/RabbitMQ/RabbitMQSenderOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Messaging/RabbitMQ/RabbitMQSenderOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Monitoring/AzureApplicationInsights/AzureApplicationInsightsOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Monitoring/AzureApplicationInsights/AzureApplicationInsightsOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Monitoring/AzureApplicationInsights/AzureApplicationInsightsServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Monitoring/AzureApplicationInsights/AzureApplicationInsightsServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Monitoring/AzureApplicationInsights/CustomTelemetryInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Monitoring/AzureApplicationInsights/CustomTelemetryInitializer.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Monitoring/AzureApplicationInsights/CustomTelemetryProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Monitoring/AzureApplicationInsights/CustomTelemetryProcessor.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Monitoring/MiniProfiler/MiniProfilerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Monitoring/MiniProfiler/MiniProfilerOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Monitoring/MiniProfiler/MiniProfilerServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Monitoring/MiniProfiler/MiniProfilerServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Monitoring/MonitoringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Monitoring/MonitoringExtensions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Monitoring/MonitoringOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Monitoring/MonitoringOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Monitoring/OpenTelemetry/OpenTelemetryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Monitoring/OpenTelemetry/OpenTelemetryExtensions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Monitoring/OpenTelemetry/OpenTelemetryOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Monitoring/OpenTelemetry/OpenTelemetryOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Notification/Email/Amazon/AmazonSesHealthCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Notification/Email/Amazon/AmazonSesHealthCheck.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Notification/Email/Amazon/AmazonSesNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Notification/Email/Amazon/AmazonSesNotification.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Notification/Email/Amazon/AmazonSesOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Notification/Email/Amazon/AmazonSesOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Notification/Email/EmailNotificationServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Notification/Email/EmailNotificationServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Notification/Email/EmailOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Notification/Email/EmailOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Notification/Email/Fake/FakeEmailNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Notification/Email/Fake/FakeEmailNotification.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Notification/Email/IEmailNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Notification/Email/IEmailNotification.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Notification/Email/MailKit/MailKitEmailNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Notification/Email/MailKit/MailKitEmailNotification.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Notification/Email/MailKit/MailKitHealthCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Notification/Email/MailKit/MailKitHealthCheck.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Notification/Email/MailKit/MailKitOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Notification/Email/MailKit/MailKitOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Notification/Email/SendGrid/SendGridEmailNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Notification/Email/SendGrid/SendGridEmailNotification.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Notification/Email/SendGrid/SendGridException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Notification/Email/SendGrid/SendGridException.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Notification/Email/SendGrid/SendGridHealthCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Notification/Email/SendGrid/SendGridHealthCheck.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Notification/Email/SendGrid/SendGridOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Notification/Email/SendGrid/SendGridOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Notification/Email/Smtp/SmtpEmailNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Notification/Email/Smtp/SmtpEmailNotification.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Notification/Email/Smtp/SmtpHealthCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Notification/Email/Smtp/SmtpHealthCheck.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Notification/Email/Smtp/SmtpOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Notification/Email/Smtp/SmtpOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Notification/NotificationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Notification/NotificationOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Notification/NotificationServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Notification/NotificationServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Notification/Sms/Amazon/AmazonOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Notification/Sms/Amazon/AmazonOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Notification/Sms/Amazon/AmazonSmsNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Notification/Sms/Amazon/AmazonSmsNotification.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Notification/Sms/Azure/AzureOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Notification/Sms/Azure/AzureOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Notification/Sms/Azure/AzureSmsNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Notification/Sms/Azure/AzureSmsNotification.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Notification/Sms/Fake/FakeSmsNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Notification/Sms/Fake/FakeSmsNotification.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Notification/Sms/ISmsNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Notification/Sms/ISmsNotification.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Notification/Sms/SmsNotificationServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Notification/Sms/SmsNotificationServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Notification/Sms/SmsOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Notification/Sms/SmsOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Notification/Sms/Twilio/TwilioHealthCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Notification/Sms/Twilio/TwilioHealthCheck.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Notification/Sms/Twilio/TwilioOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Notification/Sms/Twilio/TwilioOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Notification/Sms/Twilio/TwilioSmsNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Notification/Sms/Twilio/TwilioSmsNotification.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Notification/Web/Fake/FakeWebNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Notification/Web/Fake/FakeWebNotification.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Notification/Web/IWebNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Notification/Web/IWebNotification.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Notification/Web/SignalR/SignalRHealthCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Notification/Web/SignalR/SignalRHealthCheck.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Notification/Web/SignalR/SignalRNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Notification/Web/SignalR/SignalRNotification.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Notification/Web/SignalR/SignalROptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Notification/Web/SignalR/SignalROptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Notification/Web/WebNotificationServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Notification/Web/WebNotificationServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Notification/Web/WebOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Notification/Web/WebOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Pdf/DinkToPdf/ConfigurationEntryPdfWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Pdf/DinkToPdf/ConfigurationEntryPdfWriter.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Pdf/DinkToPdf/DinkToPdfCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Pdf/DinkToPdf/DinkToPdfCollectionExtensions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Pdf/PuppeteerSharp/ConfigurationEntryPdfWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Pdf/PuppeteerSharp/ConfigurationEntryPdfWriter.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Pdf/PuppeteerSharp/PuppeteerSharpCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Pdf/PuppeteerSharp/PuppeteerSharpCollectionExtensions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Security/HtmlSanitizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Security/HtmlSanitizer.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Storages/Amazon/AmazonOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Storages/Amazon/AmazonOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Storages/Amazon/AmazonS3HealthCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Storages/Amazon/AmazonS3HealthCheck.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Storages/Amazon/AmazonS3StorageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Storages/Amazon/AmazonS3StorageManager.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Storages/Azure/AzureBlobOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Storages/Azure/AzureBlobOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Storages/Azure/AzureBlobStorageHealthCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Storages/Azure/AzureBlobStorageHealthCheck.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Storages/Azure/AzureBlobStorageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Storages/Azure/AzureBlobStorageManager.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Storages/Azure/AzureFileShareOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Storages/Azure/AzureFileShareOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Storages/Azure/AzureFileShareStorageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Storages/Azure/AzureFileShareStorageManager.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Storages/Fake/FakeStorageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Storages/Fake/FakeStorageManager.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Storages/Ftp/FtpHealthCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Storages/Ftp/FtpHealthCheck.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Storages/Ftp/FtpOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Storages/Ftp/FtpOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Storages/Ftp/FtpStorageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Storages/Ftp/FtpStorageManager.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Storages/Google/GoogleCloudStorageHealthCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Storages/Google/GoogleCloudStorageHealthCheck.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Storages/Google/GoogleCloudStorageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Storages/Google/GoogleCloudStorageManager.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Storages/Google/GoogleCloudStorageOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Storages/Google/GoogleCloudStorageOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Storages/IFileStorageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Storages/IFileStorageManager.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Storages/Local/LocalFileHealthCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Storages/Local/LocalFileHealthCheck.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Storages/Local/LocalFileStorageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Storages/Local/LocalFileStorageManager.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Storages/Local/LocalOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Storages/Local/LocalOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Storages/Sftp/SftpOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Storages/Sftp/SftpOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Storages/Sftp/SftpStorageHealthCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Storages/Sftp/SftpStorageHealthCheck.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Storages/Sftp/SftpStorageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Storages/Sftp/SftpStorageManager.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Storages/SharePointOnline/SharePointOnlineHealthCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Storages/SharePointOnline/SharePointOnlineHealthCheck.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Storages/SharePointOnline/SharePointOnlineOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Storages/SharePointOnline/SharePointOnlineOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Storages/SharePointOnline/SharePointOnlineStorageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Storages/SharePointOnline/SharePointOnlineStorageManager.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Storages/Smb/SmbFileShareOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Storages/Smb/SmbFileShareOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Storages/Smb/SmbFileShareStorageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Storages/Smb/SmbFileShareStorageManager.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Storages/StorageOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Storages/StorageOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Storages/StoragesCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Storages/StoragesCollectionExtensions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Storages/WindowsNetworkShare/Win32NetResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Storages/WindowsNetworkShare/Win32NetResource.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Storages/WindowsNetworkShare/Win32NetworkShareOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Storages/WindowsNetworkShare/Win32NetworkShareOptions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Storages/WindowsNetworkShare/Win32NetworkShareStorageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Storages/WindowsNetworkShare/Win32NetworkShareStorageManager.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Web/Authorization/Policies/CustomAuthorizationPolicyProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Web/Authorization/Policies/CustomAuthorizationPolicyProvider.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Web/Authorization/Requirements/PermissionRequirement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Web/Authorization/Requirements/PermissionRequirement.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Web/Authorization/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Web/Authorization/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Web/ClaimsTransformations/CustomClaimsTransformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Web/ClaimsTransformations/CustomClaimsTransformation.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Web/Middleware/AccessTokenFromFormMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Web/Middleware/AccessTokenFromFormMiddleware.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Web/Middleware/DebuggingMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Web/Middleware/DebuggingMiddleware.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Web/Middleware/GlobalExceptionHandlerMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Web/Middleware/GlobalExceptionHandlerMiddleware.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Web/Middleware/IApplicationBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Web/Middleware/IApplicationBuilderExtensions.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Web/Middleware/IPFilteringMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Web/Middleware/IPFilteringMiddleware.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Web/Middleware/LoggingStatusCodeMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Web/Middleware/LoggingStatusCodeMiddleware.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Web/Middleware/SecurityHeadersMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Web/Middleware/SecurityHeadersMiddleware.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.Infrastructure/Web/Middleware/SwaggerBasicAuthMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.Infrastructure/Web/Middleware/SwaggerBasicAuthMiddleware.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Caching/CosmosDistributedCachePerformanceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Caching/CosmosDistributedCachePerformanceTests.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Caching/CosmosDistributedCacheTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Caching/CosmosDistributedCacheTests.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Caching/DistributedCacheExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Caching/DistributedCacheExtensionsTests.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Caching/MemoryCacheExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Caching/MemoryCacheExtensionsTests.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Configuration/AwsSecretsManagerConfigurationProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Configuration/AwsSecretsManagerConfigurationProviderTests.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Configuration/AwsSystemsManagerConfigurationProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Configuration/AwsSystemsManagerConfigurationProviderTests.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Configuration/GoogleCloudSecretManagerConfigurationProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Configuration/GoogleCloudSecretManagerConfigurationProviderTests.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Configuration/HashiCorpVaultConfigurationProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Configuration/HashiCorpVaultConfigurationProviderTests.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Csv/ConfigurationEntries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Csv/ConfigurationEntries.csv -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Csv/ConfigurationEntryCsvTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Csv/ConfigurationEntryCsvTests.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/DddDotNet.IntegrationTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/DddDotNet.IntegrationTests.csproj -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Excel/ClosedXML/ConfigurationEntryExcelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Excel/ClosedXML/ConfigurationEntryExcelTests.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Excel/ConfigurationEntries.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Excel/ConfigurationEntries.xlsx -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Excel/EPPlus/ConfigurationEntryExcelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Excel/EPPlus/ConfigurationEntryExcelTests.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Excel/ExcelDataReader/ConfigurationEntryExcelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Excel/ExcelDataReader/ConfigurationEntryExcelTests.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Excel/OpenXml/ConfigurationEntryExcelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Excel/OpenXml/ConfigurationEntryExcelTests.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Identity/Auth0ProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Identity/Auth0ProviderTests.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Identity/AwsCognitoIdentityProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Identity/AwsCognitoIdentityProviderTests.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Identity/AzureActiveDirectoryB2CProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Identity/AzureActiveDirectoryB2CProviderTests.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Identity/AzureActiveDirectoryProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Identity/AzureActiveDirectoryProviderTests.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Identity/GoogleCloudIdentityProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Identity/GoogleCloudIdentityProviderTests.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Messaging/AmazonEventBridgeSenderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Messaging/AmazonEventBridgeSenderTests.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Messaging/AmazonKinesisSenderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Messaging/AmazonKinesisSenderTests.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Messaging/AmazonSnsSenderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Messaging/AmazonSnsSenderTests.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Messaging/AmazonSqsSenderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Messaging/AmazonSqsSenderTests.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Messaging/ApacheActiveMQSenderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Messaging/ApacheActiveMQSenderTests.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Messaging/AzureEventGridSenderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Messaging/AzureEventGridSenderTests.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Messaging/AzureEventHubSenderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Messaging/AzureEventHubSenderTests.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Messaging/AzureQueueSenderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Messaging/AzureQueueSenderTests.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Messaging/AzureServiceBusQueueSenderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Messaging/AzureServiceBusQueueSenderTests.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Messaging/AzureServiceBusTopicSenderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Messaging/AzureServiceBusTopicSenderTests.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Messaging/GooglePubSubSenderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Messaging/GooglePubSubSenderTests.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Messaging/KafkaSenderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Messaging/KafkaSenderTests.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Messaging/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Messaging/Message.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Messaging/RabbitMQSenderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Messaging/RabbitMQSenderTests.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Notification/Email/AmazonSesNotificationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Notification/Email/AmazonSesNotificationTests.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Notification/Email/MailKitEmailNotificationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Notification/Email/MailKitEmailNotificationTests.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Notification/Email/SendGridEmailNotificationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Notification/Email/SendGridEmailNotificationTests.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Notification/Email/SmtpEmailNotificationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Notification/Email/SmtpEmailNotificationTests.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Notification/Sms/TwilioSmsNotificationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Notification/Sms/TwilioSmsNotificationTests.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Storages/AmazonS3StorageManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Storages/AmazonS3StorageManagerTests.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Storages/AzureBlobStorageManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Storages/AzureBlobStorageManagerTests.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Storages/AzureFileShareStorageManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Storages/AzureFileShareStorageManagerTests.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Storages/FtpStorageManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Storages/FtpStorageManagerTests.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Storages/GoogleCloudStorageManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Storages/GoogleCloudStorageManagerTests.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Storages/LocalFileStorageManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Storages/LocalFileStorageManagerTests.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Storages/SftpStorageManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Storages/SftpStorageManagerTests.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Storages/SharePointOnlineStorageManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Storages/SharePointOnlineStorageManagerTests.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Storages/SmbFileShareStorageManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Storages/SmbFileShareStorageManagerTests.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/Storages/Win32NetworkShareStorageManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/Storages/Win32NetworkShareStorageManagerTests.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.IntegrationTests/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.IntegrationTests/appsettings.json -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.MessageReceivers.AzureServiceBus/DddDotNet.MessageReceivers.AzureServiceBus.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.MessageReceivers.AzureServiceBus/DddDotNet.MessageReceivers.AzureServiceBus.csproj -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.MessageReceivers.AzureServiceBus/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.MessageReceivers.AzureServiceBus/Program.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.MessageReceivers.AzureServiceBus/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.MessageReceivers.AzureServiceBus/appsettings.json -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.MessageReceivers.RabbitMQ/DddDotNet.MessageReceivers.RabbitMQ.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.MessageReceivers.RabbitMQ/DddDotNet.MessageReceivers.RabbitMQ.csproj -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.MessageReceivers.RabbitMQ/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.MessageReceivers.RabbitMQ/Program.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.MessageReceivers.RabbitMQ/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.MessageReceivers.RabbitMQ/appsettings.json -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.MessageReceivers/DddDotNet.MessageReceivers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.MessageReceivers/DddDotNet.MessageReceivers.csproj -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.MessageReceivers/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.MessageReceivers/Program.cs -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.MessageReceivers/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.MessageReceivers/appsettings.json -------------------------------------------------------------------------------- /src/DddDotNet/DddDotNet.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/DddDotNet.sln -------------------------------------------------------------------------------- /src/DddDotNet/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/Directory.Build.props -------------------------------------------------------------------------------- /src/DddDotNet/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/azure-pipelines.yml -------------------------------------------------------------------------------- /src/DddDotNet/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/DddDotNet/global.json -------------------------------------------------------------------------------- /src/UriHelper/UriHelper.Benchmarks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/UriHelper/UriHelper.Benchmarks/Program.cs -------------------------------------------------------------------------------- /src/UriHelper/UriHelper.Benchmarks/UriHelper.Benchmarks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/UriHelper/UriHelper.Benchmarks/UriHelper.Benchmarks.csproj -------------------------------------------------------------------------------- /src/UriHelper/UriHelper.Benchmarks/UriPathBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/UriHelper/UriHelper.Benchmarks/UriPathBenchmarks.cs -------------------------------------------------------------------------------- /src/UriHelper/UriHelper.Tests/UriHelper.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/UriHelper/UriHelper.Tests/UriHelper.Tests.csproj -------------------------------------------------------------------------------- /src/UriHelper/UriHelper.Tests/UriPathTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/UriHelper/UriHelper.Tests/UriPathTests.cs -------------------------------------------------------------------------------- /src/UriHelper/UriHelper.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/UriHelper/UriHelper.sln -------------------------------------------------------------------------------- /src/UriHelper/UriHelper/StringBuilderPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/UriHelper/UriHelper/StringBuilderPool.cs -------------------------------------------------------------------------------- /src/UriHelper/UriHelper/UriHelper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/UriHelper/UriHelper/UriHelper.csproj -------------------------------------------------------------------------------- /src/UriHelper/UriHelper/UriPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/UriHelper/UriHelper/UriPath.cs -------------------------------------------------------------------------------- /src/UriHelper/UriHelper/UriPathInternal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/src/UriHelper/UriHelper/UriPathInternal.cs -------------------------------------------------------------------------------- /tools/kafka-single-node/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/tools/kafka-single-node/docker-compose.yml -------------------------------------------------------------------------------- /tools/rabbitmq-cluster/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/tools/rabbitmq-cluster/.env -------------------------------------------------------------------------------- /tools/rabbitmq-cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/tools/rabbitmq-cluster/README.md -------------------------------------------------------------------------------- /tools/rabbitmq-cluster/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/tools/rabbitmq-cluster/docker-compose.yml -------------------------------------------------------------------------------- /tools/rabbitmq-cluster/haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/tools/rabbitmq-cluster/haproxy.cfg -------------------------------------------------------------------------------- /tools/rabbitmq/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phongnguyend/BuildingBlocks/HEAD/tools/rabbitmq/docker-compose.yml --------------------------------------------------------------------------------