├── .vs ├── OutboxPattern │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ ├── config │ │ └── applicationhost.config │ └── v16 │ │ └── .suo ├── OutboxPatternSample │ └── v16 │ │ └── .suo ├── VSWorkspaceState.json └── slnx.sqlite ├── OutboxPattern.sln ├── OutboxPattern.v3.ncrunchsolution.user ├── README.md ├── Sample.Common ├── IntegrationEvents │ └── ProductRegistered.cs ├── Interfaces │ └── IMessagePublisher.cs ├── Models │ ├── OutboxMessage.cs │ └── OutboxMessageState.cs ├── Sample.Common.csproj ├── Settings │ └── MassTransitConfig.cs ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── Sample.Common.deps.json │ │ ├── Sample.Common.dll │ │ └── Sample.Common.pdb └── obj │ ├── Debug │ └── netcoreapp3.1 │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ ├── Sample.Common.AssemblyInfo.cs │ │ ├── Sample.Common.AssemblyInfoInputs.cache │ │ ├── Sample.Common.assets.cache │ │ ├── Sample.Common.csproj.CoreCompileInputs.cache │ │ ├── Sample.Common.csproj.FileListAbsolute.txt │ │ ├── Sample.Common.csprojAssemblyReference.cache │ │ ├── Sample.Common.dll │ │ └── Sample.Common.pdb │ ├── Sample.Common.csproj.nuget.dgspec.json │ ├── Sample.Common.csproj.nuget.g.props │ ├── Sample.Common.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── Sample.Consumer ├── Consumers │ └── ProductRegisteredConsumer.cs ├── Extensions │ ├── DependencyExtensions.cs │ └── MassTransitExtensions.cs ├── Models │ └── Product.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Sample.Consumer.csproj ├── Startup.cs ├── appsettings.Development.json ├── appsettings.json ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── Automatonymous.dll │ │ ├── Elasticsearch.Net.dll │ │ ├── GreenPipes.dll │ │ ├── MassTransit.AspNetCoreIntegration.dll │ │ ├── MassTransit.ExtensionsDependencyInjectionIntegration.dll │ │ ├── MassTransit.RabbitMqTransport.dll │ │ ├── MassTransit.dll │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ ├── Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll │ │ ├── Microsoft.Extensions.Diagnostics.HealthChecks.dll │ │ ├── Microsoft.Extensions.FileProviders.Abstractions.dll │ │ ├── Microsoft.Extensions.Hosting.Abstractions.dll │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ ├── Microsoft.Extensions.Options.dll │ │ ├── Microsoft.Extensions.Primitives.dll │ │ ├── Nest.dll │ │ ├── NewId.dll │ │ ├── Newtonsoft.Json.Bson.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── RabbitMQ.Client.dll │ │ ├── Sample.Common.dll │ │ ├── Sample.Common.pdb │ │ ├── Sample.Consumer.deps.json │ │ ├── Sample.Consumer.dll │ │ ├── Sample.Consumer.exe │ │ ├── Sample.Consumer.pdb │ │ ├── Sample.Consumer.runtimeconfig.dev.json │ │ ├── Sample.Consumer.runtimeconfig.json │ │ ├── Sample.Infrastructure.Elastic.dll │ │ ├── Sample.Infrastructure.Elastic.pdb │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ ├── System.Threading.Channels.dll │ │ ├── appsettings.Development.json │ │ └── appsettings.json └── obj │ ├── Debug │ └── netcoreapp3.1 │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ ├── Sample.Consumer.AssemblyInfo.cs │ │ ├── Sample.Consumer.AssemblyInfoInputs.cache │ │ ├── Sample.Consumer.MvcApplicationPartsAssemblyInfo.cache │ │ ├── Sample.Consumer.RazorTargetAssemblyInfo.cache │ │ ├── Sample.Consumer.assets.cache │ │ ├── Sample.Consumer.csproj.CopyComplete │ │ ├── Sample.Consumer.csproj.CoreCompileInputs.cache │ │ ├── Sample.Consumer.csproj.FileListAbsolute.txt │ │ ├── Sample.Consumer.csprojAssemblyReference.cache │ │ ├── Sample.Consumer.dll │ │ ├── Sample.Consumer.genruntimeconfig.cache │ │ ├── Sample.Consumer.pdb │ │ ├── apphost.exe │ │ └── staticwebassets │ │ ├── Sample.Consumer.StaticWebAssets.Manifest.cache │ │ └── Sample.Consumer.StaticWebAssets.xml │ ├── Sample.Consumer.csproj.nuget.dgspec.json │ ├── Sample.Consumer.csproj.nuget.g.props │ ├── Sample.Consumer.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── Sample.Core ├── Controllers │ └── ProductController.cs ├── Database │ └── OutboxDbContext.cs ├── Dto │ └── ProductDto.cs ├── Extensions │ └── DependencyExtension.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Publisher │ └── OutboxPublisher.cs ├── Repository │ ├── IOutboxRepository.cs │ └── OutboxRepository.cs ├── Sample.Core.csproj ├── Sample.Core.csproj.user ├── Startup.cs ├── appsettings.Development.json ├── appsettings.json ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── Microsoft.Data.SqlClient.dll │ │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ │ ├── Microsoft.EntityFrameworkCore.SqlServer.dll │ │ ├── Microsoft.EntityFrameworkCore.dll │ │ ├── Microsoft.Extensions.Caching.Abstractions.dll │ │ ├── Microsoft.Extensions.Caching.Memory.dll │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ ├── Microsoft.Extensions.Logging.dll │ │ ├── Microsoft.Extensions.Options.dll │ │ ├── Microsoft.Extensions.Primitives.dll │ │ ├── Microsoft.Identity.Client.dll │ │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ │ ├── Microsoft.IdentityModel.Logging.dll │ │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll │ │ ├── Microsoft.IdentityModel.Protocols.dll │ │ ├── Microsoft.IdentityModel.Tokens.dll │ │ ├── Microsoft.OpenApi.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── Sample.Common.dll │ │ ├── Sample.Common.pdb │ │ ├── Sample.Core.deps.json │ │ ├── Sample.Core.dll │ │ ├── Sample.Core.exe │ │ ├── Sample.Core.pdb │ │ ├── Sample.Core.runtimeconfig.dev.json │ │ ├── Sample.Core.runtimeconfig.json │ │ ├── Swashbuckle.AspNetCore.Swagger.dll │ │ ├── Swashbuckle.AspNetCore.SwaggerGen.dll │ │ ├── Swashbuckle.AspNetCore.SwaggerUI.dll │ │ ├── System.Collections.Immutable.dll │ │ ├── System.ComponentModel.Annotations.dll │ │ ├── System.Configuration.ConfigurationManager.dll │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ ├── System.IdentityModel.Tokens.Jwt.dll │ │ ├── System.Runtime.Caching.dll │ │ ├── System.Security.Cryptography.ProtectedData.dll │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── runtimes │ │ ├── unix │ │ └── lib │ │ │ └── netcoreapp3.1 │ │ │ └── Microsoft.Data.SqlClient.dll │ │ ├── win-arm │ │ └── native │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ └── Microsoft.Data.SqlClient.SNI.pdb │ │ ├── win-arm64 │ │ └── native │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ └── Microsoft.Data.SqlClient.SNI.pdb │ │ ├── win-x64 │ │ └── native │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ └── Microsoft.Data.SqlClient.SNI.pdb │ │ ├── win-x86 │ │ └── native │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ └── Microsoft.Data.SqlClient.SNI.pdb │ │ └── win │ │ └── lib │ │ ├── netcoreapp3.1 │ │ └── Microsoft.Data.SqlClient.dll │ │ └── netstandard2.0 │ │ ├── System.Runtime.Caching.dll │ │ └── System.Security.Cryptography.ProtectedData.dll └── obj │ ├── Debug │ └── netcoreapp3.1 │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ ├── Sample.Core.AssemblyInfo.cs │ │ ├── Sample.Core.AssemblyInfoInputs.cache │ │ ├── Sample.Core.MvcApplicationPartsAssemblyInfo.cache │ │ ├── Sample.Core.MvcApplicationPartsAssemblyInfo.cs │ │ ├── Sample.Core.RazorTargetAssemblyInfo.cache │ │ ├── Sample.Core.assets.cache │ │ ├── Sample.Core.csproj.CopyComplete │ │ ├── Sample.Core.csproj.CoreCompileInputs.cache │ │ ├── Sample.Core.csproj.FileListAbsolute.txt │ │ ├── Sample.Core.csprojAssemblyReference.cache │ │ ├── Sample.Core.dll │ │ ├── Sample.Core.genruntimeconfig.cache │ │ ├── Sample.Core.pdb │ │ ├── apphost.exe │ │ └── staticwebassets │ │ ├── Sample.Core.StaticWebAssets.Manifest.cache │ │ └── Sample.Core.StaticWebAssets.xml │ ├── Sample.Core.csproj.nuget.dgspec.json │ ├── Sample.Core.csproj.nuget.g.props │ ├── Sample.Core.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── Sample.Infrastructure.Elastic ├── ElasticSearchClientFactory.cs ├── ElasticSearchSetting.cs ├── ElasticSearchSettingOption.cs ├── GenericReadRepository.cs ├── GenericSyncRepository.cs ├── IElasticIndex.cs ├── IIndexNameStrategy.cs ├── IReadRepository.cs ├── ISyncRepository.cs ├── KebabCaseIndexNamingStrategy.cs ├── NestHelperExtensions.cs ├── Sample.Infrastructure.Elastic.csproj ├── StringExtensions.cs ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── Sample.Infrastructure.Elastic.deps.json │ │ ├── Sample.Infrastructure.Elastic.dll │ │ └── Sample.Infrastructure.Elastic.pdb └── obj │ ├── Debug │ └── netcoreapp3.1 │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ ├── Sample.Infrastructure.Elastic.AssemblyInfo.cs │ │ ├── Sample.Infrastructure.Elastic.AssemblyInfoInputs.cache │ │ ├── Sample.Infrastructure.Elastic.assets.cache │ │ ├── Sample.Infrastructure.Elastic.csproj.CoreCompileInputs.cache │ │ ├── Sample.Infrastructure.Elastic.csproj.FileListAbsolute.txt │ │ ├── Sample.Infrastructure.Elastic.csprojAssemblyReference.cache │ │ ├── Sample.Infrastructure.Elastic.dll │ │ └── Sample.Infrastructure.Elastic.pdb │ ├── Sample.Infrastructure.Elastic.csproj.nuget.dgspec.json │ ├── Sample.Infrastructure.Elastic.csproj.nuget.g.props │ ├── Sample.Infrastructure.Elastic.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── Sample.Search ├── Controllers │ └── ProductController.cs ├── Extensions │ └── DependencyExtensions.cs ├── Models │ └── Product.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Sample.Search.csproj ├── Sample.Search.csproj.user ├── Startup.cs ├── appsettings.Development.json ├── appsettings.json ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── Elasticsearch.Net.dll │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ ├── Microsoft.Extensions.Options.dll │ │ ├── Microsoft.Extensions.Primitives.dll │ │ ├── Microsoft.OpenApi.dll │ │ ├── Nest.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── Sample.Common.dll │ │ ├── Sample.Common.pdb │ │ ├── Sample.Infrastructure.Elastic.dll │ │ ├── Sample.Infrastructure.Elastic.pdb │ │ ├── Sample.Search.deps.json │ │ ├── Sample.Search.dll │ │ ├── Sample.Search.exe │ │ ├── Sample.Search.pdb │ │ ├── Sample.Search.runtimeconfig.dev.json │ │ ├── Sample.Search.runtimeconfig.json │ │ ├── Swashbuckle.AspNetCore.Swagger.dll │ │ ├── Swashbuckle.AspNetCore.SwaggerGen.dll │ │ ├── Swashbuckle.AspNetCore.SwaggerUI.dll │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ ├── appsettings.Development.json │ │ └── appsettings.json └── obj │ ├── Debug │ └── netcoreapp3.1 │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ ├── Sample.Search.AssemblyInfo.cs │ │ ├── Sample.Search.AssemblyInfoInputs.cache │ │ ├── Sample.Search.MvcApplicationPartsAssemblyInfo.cache │ │ ├── Sample.Search.MvcApplicationPartsAssemblyInfo.cs │ │ ├── Sample.Search.RazorTargetAssemblyInfo.cache │ │ ├── Sample.Search.assets.cache │ │ ├── Sample.Search.csproj.CopyComplete │ │ ├── Sample.Search.csproj.CoreCompileInputs.cache │ │ ├── Sample.Search.csproj.FileListAbsolute.txt │ │ ├── Sample.Search.csprojAssemblyReference.cache │ │ ├── Sample.Search.dll │ │ ├── Sample.Search.genruntimeconfig.cache │ │ ├── Sample.Search.pdb │ │ ├── apphost.exe │ │ └── staticwebassets │ │ ├── Sample.Search.StaticWebAssets.Manifest.cache │ │ └── Sample.Search.StaticWebAssets.xml │ ├── Sample.Search.csproj.nuget.dgspec.json │ ├── Sample.Search.csproj.nuget.g.props │ ├── Sample.Search.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache └── Sample.WorkerService ├── Database └── OutboxDbContext.cs ├── Extensions ├── DependencyExtensions.cs ├── MassTransitExtensions.cs └── ServiceCollectionQuartzConfiguratorExtensions.cs ├── Jobs └── OutboxJob.cs ├── Program.cs ├── Properties └── launchSettings.json ├── Publisher └── MasstransitRabbitMessagePublisher.cs ├── Repository ├── IWorkerOutboxRepository.cs └── OutboxRepository.cs ├── Sample.WorkerService.csproj ├── Startup.cs ├── appsettings.Development.json ├── appsettings.json ├── bin └── Debug │ └── netcoreapp3.1 │ ├── Automatonymous.dll │ ├── GreenPipes.dll │ ├── MassTransit.AspNetCoreIntegration.dll │ ├── MassTransit.ExtensionsDependencyInjectionIntegration.dll │ ├── MassTransit.RabbitMqTransport.dll │ ├── MassTransit.dll │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ ├── Microsoft.Data.SqlClient.dll │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ ├── Microsoft.EntityFrameworkCore.SqlServer.dll │ ├── Microsoft.EntityFrameworkCore.dll │ ├── Microsoft.Extensions.Caching.Abstractions.dll │ ├── Microsoft.Extensions.Caching.Memory.dll │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ ├── Microsoft.Extensions.DependencyInjection.dll │ ├── Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll │ ├── Microsoft.Extensions.Diagnostics.HealthChecks.dll │ ├── Microsoft.Extensions.FileProviders.Abstractions.dll │ ├── Microsoft.Extensions.Hosting.Abstractions.dll │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ ├── Microsoft.Extensions.Logging.dll │ ├── Microsoft.Extensions.Options.dll │ ├── Microsoft.Extensions.Primitives.dll │ ├── Microsoft.Identity.Client.dll │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ ├── Microsoft.IdentityModel.Logging.dll │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll │ ├── Microsoft.IdentityModel.Protocols.dll │ ├── Microsoft.IdentityModel.Tokens.dll │ ├── NewId.dll │ ├── Newtonsoft.Json.Bson.dll │ ├── Newtonsoft.Json.dll │ ├── Quartz.Extensions.DependencyInjection.dll │ ├── Quartz.Extensions.Hosting.dll │ ├── Quartz.dll │ ├── RabbitMQ.Client.dll │ ├── Sample.Common.dll │ ├── Sample.Common.pdb │ ├── Sample.WorkerService.deps.json │ ├── Sample.WorkerService.dll │ ├── Sample.WorkerService.exe │ ├── Sample.WorkerService.pdb │ ├── Sample.WorkerService.runtimeconfig.dev.json │ ├── Sample.WorkerService.runtimeconfig.json │ ├── System.Collections.Immutable.dll │ ├── System.ComponentModel.Annotations.dll │ ├── System.Configuration.ConfigurationManager.dll │ ├── System.Diagnostics.DiagnosticSource.dll │ ├── System.IdentityModel.Tokens.Jwt.dll │ ├── System.Runtime.Caching.dll │ ├── System.Security.Cryptography.ProtectedData.dll │ ├── System.Threading.Channels.dll │ ├── appsettings.Development.json │ ├── appsettings.json │ └── runtimes │ ├── unix │ └── lib │ │ └── netcoreapp3.1 │ │ └── Microsoft.Data.SqlClient.dll │ ├── win-arm │ └── native │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ └── Microsoft.Data.SqlClient.SNI.pdb │ ├── win-arm64 │ └── native │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ └── Microsoft.Data.SqlClient.SNI.pdb │ ├── win-x64 │ └── native │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ └── Microsoft.Data.SqlClient.SNI.pdb │ ├── win-x86 │ └── native │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ └── Microsoft.Data.SqlClient.SNI.pdb │ └── win │ └── lib │ ├── netcoreapp3.1 │ └── Microsoft.Data.SqlClient.dll │ └── netstandard2.0 │ ├── System.Runtime.Caching.dll │ └── System.Security.Cryptography.ProtectedData.dll └── obj ├── Debug └── netcoreapp3.1 │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ ├── Sample.WorkerService.AssemblyInfo.cs │ ├── Sample.WorkerService.AssemblyInfoInputs.cache │ ├── Sample.WorkerService.MvcApplicationPartsAssemblyInfo.cache │ ├── Sample.WorkerService.RazorTargetAssemblyInfo.cache │ ├── Sample.WorkerService.assets.cache │ ├── Sample.WorkerService.csproj.CopyComplete │ ├── Sample.WorkerService.csproj.CoreCompileInputs.cache │ ├── Sample.WorkerService.csproj.FileListAbsolute.txt │ ├── Sample.WorkerService.csprojAssemblyReference.cache │ ├── Sample.WorkerService.dll │ ├── Sample.WorkerService.genruntimeconfig.cache │ ├── Sample.WorkerService.pdb │ ├── apphost.exe │ └── staticwebassets │ ├── Sample.WorkerService.StaticWebAssets.Manifest.cache │ └── Sample.WorkerService.StaticWebAssets.xml ├── Sample.WorkerService.csproj.nuget.dgspec.json ├── Sample.WorkerService.csproj.nuget.g.props ├── Sample.WorkerService.csproj.nuget.g.targets ├── project.assets.json └── project.nuget.cache /.vs/OutboxPattern/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/.vs/OutboxPattern/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /.vs/OutboxPattern/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/.vs/OutboxPattern/config/applicationhost.config -------------------------------------------------------------------------------- /.vs/OutboxPattern/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/.vs/OutboxPattern/v16/.suo -------------------------------------------------------------------------------- /.vs/OutboxPatternSample/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/.vs/OutboxPatternSample/v16/.suo -------------------------------------------------------------------------------- /.vs/VSWorkspaceState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/.vs/VSWorkspaceState.json -------------------------------------------------------------------------------- /.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/.vs/slnx.sqlite -------------------------------------------------------------------------------- /OutboxPattern.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/OutboxPattern.sln -------------------------------------------------------------------------------- /OutboxPattern.v3.ncrunchsolution.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/OutboxPattern.v3.ncrunchsolution.user -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/README.md -------------------------------------------------------------------------------- /Sample.Common/IntegrationEvents/ProductRegistered.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Common/IntegrationEvents/ProductRegistered.cs -------------------------------------------------------------------------------- /Sample.Common/Interfaces/IMessagePublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Common/Interfaces/IMessagePublisher.cs -------------------------------------------------------------------------------- /Sample.Common/Models/OutboxMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Common/Models/OutboxMessage.cs -------------------------------------------------------------------------------- /Sample.Common/Models/OutboxMessageState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Common/Models/OutboxMessageState.cs -------------------------------------------------------------------------------- /Sample.Common/Sample.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Common/Sample.Common.csproj -------------------------------------------------------------------------------- /Sample.Common/Settings/MassTransitConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Common/Settings/MassTransitConfig.cs -------------------------------------------------------------------------------- /Sample.Common/bin/Debug/netcoreapp3.1/Sample.Common.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Common/bin/Debug/netcoreapp3.1/Sample.Common.deps.json -------------------------------------------------------------------------------- /Sample.Common/bin/Debug/netcoreapp3.1/Sample.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Common/bin/Debug/netcoreapp3.1/Sample.Common.dll -------------------------------------------------------------------------------- /Sample.Common/bin/Debug/netcoreapp3.1/Sample.Common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Common/bin/Debug/netcoreapp3.1/Sample.Common.pdb -------------------------------------------------------------------------------- /Sample.Common/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Common/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Sample.Common/obj/Debug/netcoreapp3.1/Sample.Common.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Common/obj/Debug/netcoreapp3.1/Sample.Common.AssemblyInfo.cs -------------------------------------------------------------------------------- /Sample.Common/obj/Debug/netcoreapp3.1/Sample.Common.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Common/obj/Debug/netcoreapp3.1/Sample.Common.AssemblyInfoInputs.cache -------------------------------------------------------------------------------- /Sample.Common/obj/Debug/netcoreapp3.1/Sample.Common.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Common/obj/Debug/netcoreapp3.1/Sample.Common.assets.cache -------------------------------------------------------------------------------- /Sample.Common/obj/Debug/netcoreapp3.1/Sample.Common.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 928897a05dd3f8e98b4706085fe37de634e3a444 2 | -------------------------------------------------------------------------------- /Sample.Common/obj/Debug/netcoreapp3.1/Sample.Common.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Common/obj/Debug/netcoreapp3.1/Sample.Common.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Sample.Common/obj/Debug/netcoreapp3.1/Sample.Common.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Common/obj/Debug/netcoreapp3.1/Sample.Common.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Sample.Common/obj/Debug/netcoreapp3.1/Sample.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Common/obj/Debug/netcoreapp3.1/Sample.Common.dll -------------------------------------------------------------------------------- /Sample.Common/obj/Debug/netcoreapp3.1/Sample.Common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Common/obj/Debug/netcoreapp3.1/Sample.Common.pdb -------------------------------------------------------------------------------- /Sample.Common/obj/Sample.Common.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Common/obj/Sample.Common.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Sample.Common/obj/Sample.Common.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Common/obj/Sample.Common.csproj.nuget.g.props -------------------------------------------------------------------------------- /Sample.Common/obj/Sample.Common.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Common/obj/Sample.Common.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Sample.Common/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Common/obj/project.assets.json -------------------------------------------------------------------------------- /Sample.Common/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Common/obj/project.nuget.cache -------------------------------------------------------------------------------- /Sample.Consumer/Consumers/ProductRegisteredConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/Consumers/ProductRegisteredConsumer.cs -------------------------------------------------------------------------------- /Sample.Consumer/Extensions/DependencyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/Extensions/DependencyExtensions.cs -------------------------------------------------------------------------------- /Sample.Consumer/Extensions/MassTransitExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/Extensions/MassTransitExtensions.cs -------------------------------------------------------------------------------- /Sample.Consumer/Models/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/Models/Product.cs -------------------------------------------------------------------------------- /Sample.Consumer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/Program.cs -------------------------------------------------------------------------------- /Sample.Consumer/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/Properties/launchSettings.json -------------------------------------------------------------------------------- /Sample.Consumer/Sample.Consumer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/Sample.Consumer.csproj -------------------------------------------------------------------------------- /Sample.Consumer/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/Startup.cs -------------------------------------------------------------------------------- /Sample.Consumer/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/appsettings.Development.json -------------------------------------------------------------------------------- /Sample.Consumer/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/appsettings.json -------------------------------------------------------------------------------- /Sample.Consumer/bin/Debug/netcoreapp3.1/Automatonymous.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/bin/Debug/netcoreapp3.1/Automatonymous.dll -------------------------------------------------------------------------------- /Sample.Consumer/bin/Debug/netcoreapp3.1/Elasticsearch.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/bin/Debug/netcoreapp3.1/Elasticsearch.Net.dll -------------------------------------------------------------------------------- /Sample.Consumer/bin/Debug/netcoreapp3.1/GreenPipes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/bin/Debug/netcoreapp3.1/GreenPipes.dll -------------------------------------------------------------------------------- /Sample.Consumer/bin/Debug/netcoreapp3.1/MassTransit.AspNetCoreIntegration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/bin/Debug/netcoreapp3.1/MassTransit.AspNetCoreIntegration.dll -------------------------------------------------------------------------------- /Sample.Consumer/bin/Debug/netcoreapp3.1/MassTransit.ExtensionsDependencyInjectionIntegration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/bin/Debug/netcoreapp3.1/MassTransit.ExtensionsDependencyInjectionIntegration.dll -------------------------------------------------------------------------------- /Sample.Consumer/bin/Debug/netcoreapp3.1/MassTransit.RabbitMqTransport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/bin/Debug/netcoreapp3.1/MassTransit.RabbitMqTransport.dll -------------------------------------------------------------------------------- /Sample.Consumer/bin/Debug/netcoreapp3.1/MassTransit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/bin/Debug/netcoreapp3.1/MassTransit.dll -------------------------------------------------------------------------------- /Sample.Consumer/bin/Debug/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/bin/Debug/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /Sample.Consumer/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll -------------------------------------------------------------------------------- /Sample.Consumer/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /Sample.Consumer/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll -------------------------------------------------------------------------------- /Sample.Consumer/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Diagnostics.HealthChecks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Diagnostics.HealthChecks.dll -------------------------------------------------------------------------------- /Sample.Consumer/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll -------------------------------------------------------------------------------- /Sample.Consumer/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll -------------------------------------------------------------------------------- /Sample.Consumer/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll -------------------------------------------------------------------------------- /Sample.Consumer/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /Sample.Consumer/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /Sample.Consumer/bin/Debug/netcoreapp3.1/Nest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/bin/Debug/netcoreapp3.1/Nest.dll -------------------------------------------------------------------------------- /Sample.Consumer/bin/Debug/netcoreapp3.1/NewId.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/bin/Debug/netcoreapp3.1/NewId.dll -------------------------------------------------------------------------------- /Sample.Consumer/bin/Debug/netcoreapp3.1/Newtonsoft.Json.Bson.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/bin/Debug/netcoreapp3.1/Newtonsoft.Json.Bson.dll -------------------------------------------------------------------------------- /Sample.Consumer/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Sample.Consumer/bin/Debug/netcoreapp3.1/RabbitMQ.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/bin/Debug/netcoreapp3.1/RabbitMQ.Client.dll -------------------------------------------------------------------------------- /Sample.Consumer/bin/Debug/netcoreapp3.1/Sample.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/bin/Debug/netcoreapp3.1/Sample.Common.dll -------------------------------------------------------------------------------- /Sample.Consumer/bin/Debug/netcoreapp3.1/Sample.Common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/bin/Debug/netcoreapp3.1/Sample.Common.pdb -------------------------------------------------------------------------------- /Sample.Consumer/bin/Debug/netcoreapp3.1/Sample.Consumer.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/bin/Debug/netcoreapp3.1/Sample.Consumer.deps.json -------------------------------------------------------------------------------- /Sample.Consumer/bin/Debug/netcoreapp3.1/Sample.Consumer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/bin/Debug/netcoreapp3.1/Sample.Consumer.dll -------------------------------------------------------------------------------- /Sample.Consumer/bin/Debug/netcoreapp3.1/Sample.Consumer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/bin/Debug/netcoreapp3.1/Sample.Consumer.exe -------------------------------------------------------------------------------- /Sample.Consumer/bin/Debug/netcoreapp3.1/Sample.Consumer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/bin/Debug/netcoreapp3.1/Sample.Consumer.pdb -------------------------------------------------------------------------------- /Sample.Consumer/bin/Debug/netcoreapp3.1/Sample.Consumer.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/bin/Debug/netcoreapp3.1/Sample.Consumer.runtimeconfig.dev.json -------------------------------------------------------------------------------- /Sample.Consumer/bin/Debug/netcoreapp3.1/Sample.Consumer.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/bin/Debug/netcoreapp3.1/Sample.Consumer.runtimeconfig.json -------------------------------------------------------------------------------- /Sample.Consumer/bin/Debug/netcoreapp3.1/Sample.Infrastructure.Elastic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/bin/Debug/netcoreapp3.1/Sample.Infrastructure.Elastic.dll -------------------------------------------------------------------------------- /Sample.Consumer/bin/Debug/netcoreapp3.1/Sample.Infrastructure.Elastic.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/bin/Debug/netcoreapp3.1/Sample.Infrastructure.Elastic.pdb -------------------------------------------------------------------------------- /Sample.Consumer/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /Sample.Consumer/bin/Debug/netcoreapp3.1/System.Threading.Channels.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/bin/Debug/netcoreapp3.1/System.Threading.Channels.dll -------------------------------------------------------------------------------- /Sample.Consumer/bin/Debug/netcoreapp3.1/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/bin/Debug/netcoreapp3.1/appsettings.Development.json -------------------------------------------------------------------------------- /Sample.Consumer/bin/Debug/netcoreapp3.1/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/bin/Debug/netcoreapp3.1/appsettings.json -------------------------------------------------------------------------------- /Sample.Consumer/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Sample.Consumer/obj/Debug/netcoreapp3.1/Sample.Consumer.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/obj/Debug/netcoreapp3.1/Sample.Consumer.AssemblyInfo.cs -------------------------------------------------------------------------------- /Sample.Consumer/obj/Debug/netcoreapp3.1/Sample.Consumer.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 6d7c1992e22ac5df46aea039f7380212b8a41cd0 2 | -------------------------------------------------------------------------------- /Sample.Consumer/obj/Debug/netcoreapp3.1/Sample.Consumer.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sample.Consumer/obj/Debug/netcoreapp3.1/Sample.Consumer.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 06f399741594aa62c81a5322d9512003bdfb5c44 2 | -------------------------------------------------------------------------------- /Sample.Consumer/obj/Debug/netcoreapp3.1/Sample.Consumer.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/obj/Debug/netcoreapp3.1/Sample.Consumer.assets.cache -------------------------------------------------------------------------------- /Sample.Consumer/obj/Debug/netcoreapp3.1/Sample.Consumer.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sample.Consumer/obj/Debug/netcoreapp3.1/Sample.Consumer.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | efff59592e1ff412582410e149d92e628ed67ba6 2 | -------------------------------------------------------------------------------- /Sample.Consumer/obj/Debug/netcoreapp3.1/Sample.Consumer.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/obj/Debug/netcoreapp3.1/Sample.Consumer.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Sample.Consumer/obj/Debug/netcoreapp3.1/Sample.Consumer.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/obj/Debug/netcoreapp3.1/Sample.Consumer.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Sample.Consumer/obj/Debug/netcoreapp3.1/Sample.Consumer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/obj/Debug/netcoreapp3.1/Sample.Consumer.dll -------------------------------------------------------------------------------- /Sample.Consumer/obj/Debug/netcoreapp3.1/Sample.Consumer.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | ec9e5eb6508df9db0b69a29b31f552009e52e8f3 2 | -------------------------------------------------------------------------------- /Sample.Consumer/obj/Debug/netcoreapp3.1/Sample.Consumer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/obj/Debug/netcoreapp3.1/Sample.Consumer.pdb -------------------------------------------------------------------------------- /Sample.Consumer/obj/Debug/netcoreapp3.1/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/obj/Debug/netcoreapp3.1/apphost.exe -------------------------------------------------------------------------------- /Sample.Consumer/obj/Debug/netcoreapp3.1/staticwebassets/Sample.Consumer.StaticWebAssets.Manifest.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sample.Consumer/obj/Debug/netcoreapp3.1/staticwebassets/Sample.Consumer.StaticWebAssets.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sample.Consumer/obj/Sample.Consumer.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/obj/Sample.Consumer.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Sample.Consumer/obj/Sample.Consumer.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/obj/Sample.Consumer.csproj.nuget.g.props -------------------------------------------------------------------------------- /Sample.Consumer/obj/Sample.Consumer.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/obj/Sample.Consumer.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Sample.Consumer/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/obj/project.assets.json -------------------------------------------------------------------------------- /Sample.Consumer/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Consumer/obj/project.nuget.cache -------------------------------------------------------------------------------- /Sample.Core/Controllers/ProductController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/Controllers/ProductController.cs -------------------------------------------------------------------------------- /Sample.Core/Database/OutboxDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/Database/OutboxDbContext.cs -------------------------------------------------------------------------------- /Sample.Core/Dto/ProductDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/Dto/ProductDto.cs -------------------------------------------------------------------------------- /Sample.Core/Extensions/DependencyExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/Extensions/DependencyExtension.cs -------------------------------------------------------------------------------- /Sample.Core/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/Program.cs -------------------------------------------------------------------------------- /Sample.Core/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/Properties/launchSettings.json -------------------------------------------------------------------------------- /Sample.Core/Publisher/OutboxPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/Publisher/OutboxPublisher.cs -------------------------------------------------------------------------------- /Sample.Core/Repository/IOutboxRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/Repository/IOutboxRepository.cs -------------------------------------------------------------------------------- /Sample.Core/Repository/OutboxRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/Repository/OutboxRepository.cs -------------------------------------------------------------------------------- /Sample.Core/Sample.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/Sample.Core.csproj -------------------------------------------------------------------------------- /Sample.Core/Sample.Core.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/Sample.Core.csproj.user -------------------------------------------------------------------------------- /Sample.Core/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/Startup.cs -------------------------------------------------------------------------------- /Sample.Core/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/appsettings.Development.json -------------------------------------------------------------------------------- /Sample.Core/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/appsettings.json -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.SqlServer.dll -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/Microsoft.Identity.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/Microsoft.Identity.Client.dll -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.JsonWebTokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.JsonWebTokens.dll -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Protocols.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Protocols.dll -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/Microsoft.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/Microsoft.OpenApi.dll -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/Sample.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/Sample.Common.dll -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/Sample.Common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/Sample.Common.pdb -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/Sample.Core.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/Sample.Core.deps.json -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/Sample.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/Sample.Core.dll -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/Sample.Core.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/Sample.Core.exe -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/Sample.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/Sample.Core.pdb -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/Sample.Core.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/Sample.Core.runtimeconfig.dev.json -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/Sample.Core.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/Sample.Core.runtimeconfig.json -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.Swagger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.Swagger.dll -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.SwaggerGen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.SwaggerGen.dll -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.SwaggerUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.SwaggerUI.dll -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/System.ComponentModel.Annotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/System.ComponentModel.Annotations.dll -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/appsettings.Development.json -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/appsettings.json -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.pdb -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.pdb -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.pdb -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.pdb -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /Sample.Core/bin/Debug/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/bin/Debug/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /Sample.Core/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Sample.Core/obj/Debug/netcoreapp3.1/Sample.Core.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/obj/Debug/netcoreapp3.1/Sample.Core.AssemblyInfo.cs -------------------------------------------------------------------------------- /Sample.Core/obj/Debug/netcoreapp3.1/Sample.Core.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 2cc21e2051cae9ca7c9adf2775f2b3bb1652fce5 2 | -------------------------------------------------------------------------------- /Sample.Core/obj/Debug/netcoreapp3.1/Sample.Core.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sample.Core/obj/Debug/netcoreapp3.1/Sample.Core.MvcApplicationPartsAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/obj/Debug/netcoreapp3.1/Sample.Core.MvcApplicationPartsAssemblyInfo.cs -------------------------------------------------------------------------------- /Sample.Core/obj/Debug/netcoreapp3.1/Sample.Core.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 0d7cca06ca8d0d1d55d8e661fb569e9e678a1311 2 | -------------------------------------------------------------------------------- /Sample.Core/obj/Debug/netcoreapp3.1/Sample.Core.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/obj/Debug/netcoreapp3.1/Sample.Core.assets.cache -------------------------------------------------------------------------------- /Sample.Core/obj/Debug/netcoreapp3.1/Sample.Core.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sample.Core/obj/Debug/netcoreapp3.1/Sample.Core.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | c093de1c72edbde04edd546fab49a2da08bdf379 2 | -------------------------------------------------------------------------------- /Sample.Core/obj/Debug/netcoreapp3.1/Sample.Core.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/obj/Debug/netcoreapp3.1/Sample.Core.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Sample.Core/obj/Debug/netcoreapp3.1/Sample.Core.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/obj/Debug/netcoreapp3.1/Sample.Core.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Sample.Core/obj/Debug/netcoreapp3.1/Sample.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/obj/Debug/netcoreapp3.1/Sample.Core.dll -------------------------------------------------------------------------------- /Sample.Core/obj/Debug/netcoreapp3.1/Sample.Core.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 63f9d914c3dfe502340e0b879ac263008bfc8dfd 2 | -------------------------------------------------------------------------------- /Sample.Core/obj/Debug/netcoreapp3.1/Sample.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/obj/Debug/netcoreapp3.1/Sample.Core.pdb -------------------------------------------------------------------------------- /Sample.Core/obj/Debug/netcoreapp3.1/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/obj/Debug/netcoreapp3.1/apphost.exe -------------------------------------------------------------------------------- /Sample.Core/obj/Debug/netcoreapp3.1/staticwebassets/Sample.Core.StaticWebAssets.Manifest.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sample.Core/obj/Debug/netcoreapp3.1/staticwebassets/Sample.Core.StaticWebAssets.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sample.Core/obj/Sample.Core.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/obj/Sample.Core.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Sample.Core/obj/Sample.Core.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/obj/Sample.Core.csproj.nuget.g.props -------------------------------------------------------------------------------- /Sample.Core/obj/Sample.Core.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/obj/Sample.Core.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Sample.Core/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/obj/project.assets.json -------------------------------------------------------------------------------- /Sample.Core/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Core/obj/project.nuget.cache -------------------------------------------------------------------------------- /Sample.Infrastructure.Elastic/ElasticSearchClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Infrastructure.Elastic/ElasticSearchClientFactory.cs -------------------------------------------------------------------------------- /Sample.Infrastructure.Elastic/ElasticSearchSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Infrastructure.Elastic/ElasticSearchSetting.cs -------------------------------------------------------------------------------- /Sample.Infrastructure.Elastic/ElasticSearchSettingOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Infrastructure.Elastic/ElasticSearchSettingOption.cs -------------------------------------------------------------------------------- /Sample.Infrastructure.Elastic/GenericReadRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Infrastructure.Elastic/GenericReadRepository.cs -------------------------------------------------------------------------------- /Sample.Infrastructure.Elastic/GenericSyncRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Infrastructure.Elastic/GenericSyncRepository.cs -------------------------------------------------------------------------------- /Sample.Infrastructure.Elastic/IElasticIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Infrastructure.Elastic/IElasticIndex.cs -------------------------------------------------------------------------------- /Sample.Infrastructure.Elastic/IIndexNameStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Infrastructure.Elastic/IIndexNameStrategy.cs -------------------------------------------------------------------------------- /Sample.Infrastructure.Elastic/IReadRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Infrastructure.Elastic/IReadRepository.cs -------------------------------------------------------------------------------- /Sample.Infrastructure.Elastic/ISyncRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Infrastructure.Elastic/ISyncRepository.cs -------------------------------------------------------------------------------- /Sample.Infrastructure.Elastic/KebabCaseIndexNamingStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Infrastructure.Elastic/KebabCaseIndexNamingStrategy.cs -------------------------------------------------------------------------------- /Sample.Infrastructure.Elastic/NestHelperExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Infrastructure.Elastic/NestHelperExtensions.cs -------------------------------------------------------------------------------- /Sample.Infrastructure.Elastic/Sample.Infrastructure.Elastic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Infrastructure.Elastic/Sample.Infrastructure.Elastic.csproj -------------------------------------------------------------------------------- /Sample.Infrastructure.Elastic/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Infrastructure.Elastic/StringExtensions.cs -------------------------------------------------------------------------------- /Sample.Infrastructure.Elastic/bin/Debug/netcoreapp3.1/Sample.Infrastructure.Elastic.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Infrastructure.Elastic/bin/Debug/netcoreapp3.1/Sample.Infrastructure.Elastic.deps.json -------------------------------------------------------------------------------- /Sample.Infrastructure.Elastic/bin/Debug/netcoreapp3.1/Sample.Infrastructure.Elastic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Infrastructure.Elastic/bin/Debug/netcoreapp3.1/Sample.Infrastructure.Elastic.dll -------------------------------------------------------------------------------- /Sample.Infrastructure.Elastic/bin/Debug/netcoreapp3.1/Sample.Infrastructure.Elastic.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Infrastructure.Elastic/bin/Debug/netcoreapp3.1/Sample.Infrastructure.Elastic.pdb -------------------------------------------------------------------------------- /Sample.Infrastructure.Elastic/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Infrastructure.Elastic/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Sample.Infrastructure.Elastic/obj/Debug/netcoreapp3.1/Sample.Infrastructure.Elastic.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Infrastructure.Elastic/obj/Debug/netcoreapp3.1/Sample.Infrastructure.Elastic.AssemblyInfo.cs -------------------------------------------------------------------------------- /Sample.Infrastructure.Elastic/obj/Debug/netcoreapp3.1/Sample.Infrastructure.Elastic.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 991b0b9d20ecd3c54bea69c09a072683552062c0 2 | -------------------------------------------------------------------------------- /Sample.Infrastructure.Elastic/obj/Debug/netcoreapp3.1/Sample.Infrastructure.Elastic.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Infrastructure.Elastic/obj/Debug/netcoreapp3.1/Sample.Infrastructure.Elastic.assets.cache -------------------------------------------------------------------------------- /Sample.Infrastructure.Elastic/obj/Debug/netcoreapp3.1/Sample.Infrastructure.Elastic.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | c904fdad12a7cca1e9add83ec22314f57f6210be 2 | -------------------------------------------------------------------------------- /Sample.Infrastructure.Elastic/obj/Debug/netcoreapp3.1/Sample.Infrastructure.Elastic.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Infrastructure.Elastic/obj/Debug/netcoreapp3.1/Sample.Infrastructure.Elastic.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Sample.Infrastructure.Elastic/obj/Debug/netcoreapp3.1/Sample.Infrastructure.Elastic.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Infrastructure.Elastic/obj/Debug/netcoreapp3.1/Sample.Infrastructure.Elastic.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Sample.Infrastructure.Elastic/obj/Debug/netcoreapp3.1/Sample.Infrastructure.Elastic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Infrastructure.Elastic/obj/Debug/netcoreapp3.1/Sample.Infrastructure.Elastic.dll -------------------------------------------------------------------------------- /Sample.Infrastructure.Elastic/obj/Debug/netcoreapp3.1/Sample.Infrastructure.Elastic.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Infrastructure.Elastic/obj/Debug/netcoreapp3.1/Sample.Infrastructure.Elastic.pdb -------------------------------------------------------------------------------- /Sample.Infrastructure.Elastic/obj/Sample.Infrastructure.Elastic.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Infrastructure.Elastic/obj/Sample.Infrastructure.Elastic.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Sample.Infrastructure.Elastic/obj/Sample.Infrastructure.Elastic.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Infrastructure.Elastic/obj/Sample.Infrastructure.Elastic.csproj.nuget.g.props -------------------------------------------------------------------------------- /Sample.Infrastructure.Elastic/obj/Sample.Infrastructure.Elastic.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Infrastructure.Elastic/obj/Sample.Infrastructure.Elastic.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Sample.Infrastructure.Elastic/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Infrastructure.Elastic/obj/project.assets.json -------------------------------------------------------------------------------- /Sample.Infrastructure.Elastic/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Infrastructure.Elastic/obj/project.nuget.cache -------------------------------------------------------------------------------- /Sample.Search/Controllers/ProductController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/Controllers/ProductController.cs -------------------------------------------------------------------------------- /Sample.Search/Extensions/DependencyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/Extensions/DependencyExtensions.cs -------------------------------------------------------------------------------- /Sample.Search/Models/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/Models/Product.cs -------------------------------------------------------------------------------- /Sample.Search/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/Program.cs -------------------------------------------------------------------------------- /Sample.Search/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/Properties/launchSettings.json -------------------------------------------------------------------------------- /Sample.Search/Sample.Search.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/Sample.Search.csproj -------------------------------------------------------------------------------- /Sample.Search/Sample.Search.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/Sample.Search.csproj.user -------------------------------------------------------------------------------- /Sample.Search/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/Startup.cs -------------------------------------------------------------------------------- /Sample.Search/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/appsettings.Development.json -------------------------------------------------------------------------------- /Sample.Search/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/appsettings.json -------------------------------------------------------------------------------- /Sample.Search/bin/Debug/netcoreapp3.1/Elasticsearch.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/bin/Debug/netcoreapp3.1/Elasticsearch.Net.dll -------------------------------------------------------------------------------- /Sample.Search/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /Sample.Search/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /Sample.Search/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /Sample.Search/bin/Debug/netcoreapp3.1/Microsoft.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/bin/Debug/netcoreapp3.1/Microsoft.OpenApi.dll -------------------------------------------------------------------------------- /Sample.Search/bin/Debug/netcoreapp3.1/Nest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/bin/Debug/netcoreapp3.1/Nest.dll -------------------------------------------------------------------------------- /Sample.Search/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Sample.Search/bin/Debug/netcoreapp3.1/Sample.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/bin/Debug/netcoreapp3.1/Sample.Common.dll -------------------------------------------------------------------------------- /Sample.Search/bin/Debug/netcoreapp3.1/Sample.Common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/bin/Debug/netcoreapp3.1/Sample.Common.pdb -------------------------------------------------------------------------------- /Sample.Search/bin/Debug/netcoreapp3.1/Sample.Infrastructure.Elastic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/bin/Debug/netcoreapp3.1/Sample.Infrastructure.Elastic.dll -------------------------------------------------------------------------------- /Sample.Search/bin/Debug/netcoreapp3.1/Sample.Infrastructure.Elastic.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/bin/Debug/netcoreapp3.1/Sample.Infrastructure.Elastic.pdb -------------------------------------------------------------------------------- /Sample.Search/bin/Debug/netcoreapp3.1/Sample.Search.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/bin/Debug/netcoreapp3.1/Sample.Search.deps.json -------------------------------------------------------------------------------- /Sample.Search/bin/Debug/netcoreapp3.1/Sample.Search.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/bin/Debug/netcoreapp3.1/Sample.Search.dll -------------------------------------------------------------------------------- /Sample.Search/bin/Debug/netcoreapp3.1/Sample.Search.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/bin/Debug/netcoreapp3.1/Sample.Search.exe -------------------------------------------------------------------------------- /Sample.Search/bin/Debug/netcoreapp3.1/Sample.Search.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/bin/Debug/netcoreapp3.1/Sample.Search.pdb -------------------------------------------------------------------------------- /Sample.Search/bin/Debug/netcoreapp3.1/Sample.Search.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/bin/Debug/netcoreapp3.1/Sample.Search.runtimeconfig.dev.json -------------------------------------------------------------------------------- /Sample.Search/bin/Debug/netcoreapp3.1/Sample.Search.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/bin/Debug/netcoreapp3.1/Sample.Search.runtimeconfig.json -------------------------------------------------------------------------------- /Sample.Search/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.Swagger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.Swagger.dll -------------------------------------------------------------------------------- /Sample.Search/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.SwaggerGen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.SwaggerGen.dll -------------------------------------------------------------------------------- /Sample.Search/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.SwaggerUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.SwaggerUI.dll -------------------------------------------------------------------------------- /Sample.Search/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /Sample.Search/bin/Debug/netcoreapp3.1/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/bin/Debug/netcoreapp3.1/appsettings.Development.json -------------------------------------------------------------------------------- /Sample.Search/bin/Debug/netcoreapp3.1/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/bin/Debug/netcoreapp3.1/appsettings.json -------------------------------------------------------------------------------- /Sample.Search/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Sample.Search/obj/Debug/netcoreapp3.1/Sample.Search.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/obj/Debug/netcoreapp3.1/Sample.Search.AssemblyInfo.cs -------------------------------------------------------------------------------- /Sample.Search/obj/Debug/netcoreapp3.1/Sample.Search.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/obj/Debug/netcoreapp3.1/Sample.Search.AssemblyInfoInputs.cache -------------------------------------------------------------------------------- /Sample.Search/obj/Debug/netcoreapp3.1/Sample.Search.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sample.Search/obj/Debug/netcoreapp3.1/Sample.Search.MvcApplicationPartsAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/obj/Debug/netcoreapp3.1/Sample.Search.MvcApplicationPartsAssemblyInfo.cs -------------------------------------------------------------------------------- /Sample.Search/obj/Debug/netcoreapp3.1/Sample.Search.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/obj/Debug/netcoreapp3.1/Sample.Search.RazorTargetAssemblyInfo.cache -------------------------------------------------------------------------------- /Sample.Search/obj/Debug/netcoreapp3.1/Sample.Search.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/obj/Debug/netcoreapp3.1/Sample.Search.assets.cache -------------------------------------------------------------------------------- /Sample.Search/obj/Debug/netcoreapp3.1/Sample.Search.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sample.Search/obj/Debug/netcoreapp3.1/Sample.Search.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 22058f62574278380c2c9d09cdf060998c54bbe3 2 | -------------------------------------------------------------------------------- /Sample.Search/obj/Debug/netcoreapp3.1/Sample.Search.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/obj/Debug/netcoreapp3.1/Sample.Search.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Sample.Search/obj/Debug/netcoreapp3.1/Sample.Search.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/obj/Debug/netcoreapp3.1/Sample.Search.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Sample.Search/obj/Debug/netcoreapp3.1/Sample.Search.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/obj/Debug/netcoreapp3.1/Sample.Search.dll -------------------------------------------------------------------------------- /Sample.Search/obj/Debug/netcoreapp3.1/Sample.Search.genruntimeconfig.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/obj/Debug/netcoreapp3.1/Sample.Search.genruntimeconfig.cache -------------------------------------------------------------------------------- /Sample.Search/obj/Debug/netcoreapp3.1/Sample.Search.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/obj/Debug/netcoreapp3.1/Sample.Search.pdb -------------------------------------------------------------------------------- /Sample.Search/obj/Debug/netcoreapp3.1/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/obj/Debug/netcoreapp3.1/apphost.exe -------------------------------------------------------------------------------- /Sample.Search/obj/Debug/netcoreapp3.1/staticwebassets/Sample.Search.StaticWebAssets.Manifest.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sample.Search/obj/Debug/netcoreapp3.1/staticwebassets/Sample.Search.StaticWebAssets.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sample.Search/obj/Sample.Search.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/obj/Sample.Search.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Sample.Search/obj/Sample.Search.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/obj/Sample.Search.csproj.nuget.g.props -------------------------------------------------------------------------------- /Sample.Search/obj/Sample.Search.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/obj/Sample.Search.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Sample.Search/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/obj/project.assets.json -------------------------------------------------------------------------------- /Sample.Search/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.Search/obj/project.nuget.cache -------------------------------------------------------------------------------- /Sample.WorkerService/Database/OutboxDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/Database/OutboxDbContext.cs -------------------------------------------------------------------------------- /Sample.WorkerService/Extensions/DependencyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/Extensions/DependencyExtensions.cs -------------------------------------------------------------------------------- /Sample.WorkerService/Extensions/MassTransitExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/Extensions/MassTransitExtensions.cs -------------------------------------------------------------------------------- /Sample.WorkerService/Extensions/ServiceCollectionQuartzConfiguratorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/Extensions/ServiceCollectionQuartzConfiguratorExtensions.cs -------------------------------------------------------------------------------- /Sample.WorkerService/Jobs/OutboxJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/Jobs/OutboxJob.cs -------------------------------------------------------------------------------- /Sample.WorkerService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/Program.cs -------------------------------------------------------------------------------- /Sample.WorkerService/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/Properties/launchSettings.json -------------------------------------------------------------------------------- /Sample.WorkerService/Publisher/MasstransitRabbitMessagePublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/Publisher/MasstransitRabbitMessagePublisher.cs -------------------------------------------------------------------------------- /Sample.WorkerService/Repository/IWorkerOutboxRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/Repository/IWorkerOutboxRepository.cs -------------------------------------------------------------------------------- /Sample.WorkerService/Repository/OutboxRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/Repository/OutboxRepository.cs -------------------------------------------------------------------------------- /Sample.WorkerService/Sample.WorkerService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/Sample.WorkerService.csproj -------------------------------------------------------------------------------- /Sample.WorkerService/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/Startup.cs -------------------------------------------------------------------------------- /Sample.WorkerService/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/appsettings.Development.json -------------------------------------------------------------------------------- /Sample.WorkerService/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/appsettings.json -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/Automatonymous.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/Automatonymous.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/GreenPipes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/GreenPipes.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/MassTransit.AspNetCoreIntegration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/MassTransit.AspNetCoreIntegration.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/MassTransit.ExtensionsDependencyInjectionIntegration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/MassTransit.ExtensionsDependencyInjectionIntegration.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/MassTransit.RabbitMqTransport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/MassTransit.RabbitMqTransport.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/MassTransit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/MassTransit.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.SqlServer.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Diagnostics.HealthChecks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Diagnostics.HealthChecks.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.Identity.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.Identity.Client.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.JsonWebTokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.JsonWebTokens.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Protocols.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Protocols.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/NewId.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/NewId.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/Newtonsoft.Json.Bson.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/Newtonsoft.Json.Bson.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/Quartz.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/Quartz.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/Quartz.Extensions.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/Quartz.Extensions.Hosting.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/Quartz.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/Quartz.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/RabbitMQ.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/RabbitMQ.Client.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/Sample.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/Sample.Common.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/Sample.Common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/Sample.Common.pdb -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/Sample.WorkerService.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/Sample.WorkerService.deps.json -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/Sample.WorkerService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/Sample.WorkerService.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/Sample.WorkerService.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/Sample.WorkerService.exe -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/Sample.WorkerService.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/Sample.WorkerService.pdb -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/Sample.WorkerService.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/Sample.WorkerService.runtimeconfig.dev.json -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/Sample.WorkerService.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/Sample.WorkerService.runtimeconfig.json -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/System.ComponentModel.Annotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/System.ComponentModel.Annotations.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/System.Threading.Channels.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/System.Threading.Channels.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/appsettings.Development.json -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/appsettings.json -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.pdb -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.pdb -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.pdb -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.pdb -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /Sample.WorkerService/bin/Debug/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/bin/Debug/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /Sample.WorkerService/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Sample.WorkerService/obj/Debug/netcoreapp3.1/Sample.WorkerService.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/obj/Debug/netcoreapp3.1/Sample.WorkerService.AssemblyInfo.cs -------------------------------------------------------------------------------- /Sample.WorkerService/obj/Debug/netcoreapp3.1/Sample.WorkerService.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | b1866cedd34e5fc660e4835c49f43389574352a6 2 | -------------------------------------------------------------------------------- /Sample.WorkerService/obj/Debug/netcoreapp3.1/Sample.WorkerService.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sample.WorkerService/obj/Debug/netcoreapp3.1/Sample.WorkerService.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | db4981a0529789f80b3acd5c79e53280bed984e7 2 | -------------------------------------------------------------------------------- /Sample.WorkerService/obj/Debug/netcoreapp3.1/Sample.WorkerService.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/obj/Debug/netcoreapp3.1/Sample.WorkerService.assets.cache -------------------------------------------------------------------------------- /Sample.WorkerService/obj/Debug/netcoreapp3.1/Sample.WorkerService.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sample.WorkerService/obj/Debug/netcoreapp3.1/Sample.WorkerService.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | f5431ce4c7f0bc700b2a4f63e93152da9176136e 2 | -------------------------------------------------------------------------------- /Sample.WorkerService/obj/Debug/netcoreapp3.1/Sample.WorkerService.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/obj/Debug/netcoreapp3.1/Sample.WorkerService.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Sample.WorkerService/obj/Debug/netcoreapp3.1/Sample.WorkerService.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/obj/Debug/netcoreapp3.1/Sample.WorkerService.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Sample.WorkerService/obj/Debug/netcoreapp3.1/Sample.WorkerService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/obj/Debug/netcoreapp3.1/Sample.WorkerService.dll -------------------------------------------------------------------------------- /Sample.WorkerService/obj/Debug/netcoreapp3.1/Sample.WorkerService.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | d0090da41d920ae5313947a560284999818b87ec 2 | -------------------------------------------------------------------------------- /Sample.WorkerService/obj/Debug/netcoreapp3.1/Sample.WorkerService.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/obj/Debug/netcoreapp3.1/Sample.WorkerService.pdb -------------------------------------------------------------------------------- /Sample.WorkerService/obj/Debug/netcoreapp3.1/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/obj/Debug/netcoreapp3.1/apphost.exe -------------------------------------------------------------------------------- /Sample.WorkerService/obj/Debug/netcoreapp3.1/staticwebassets/Sample.WorkerService.StaticWebAssets.Manifest.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sample.WorkerService/obj/Debug/netcoreapp3.1/staticwebassets/Sample.WorkerService.StaticWebAssets.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sample.WorkerService/obj/Sample.WorkerService.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/obj/Sample.WorkerService.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Sample.WorkerService/obj/Sample.WorkerService.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/obj/Sample.WorkerService.csproj.nuget.g.props -------------------------------------------------------------------------------- /Sample.WorkerService/obj/Sample.WorkerService.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/obj/Sample.WorkerService.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Sample.WorkerService/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/obj/project.assets.json -------------------------------------------------------------------------------- /Sample.WorkerService/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogh64/OutboxPatternSample/HEAD/Sample.WorkerService/obj/project.nuget.cache --------------------------------------------------------------------------------