├── .vscode ├── launch.json └── tasks.json ├── AccountsAuditConsumer ├── AccountsAuditConsumer.csproj ├── Program.cs ├── RabbitMQ │ ├── ObjectSerialize.cs │ └── RabbitMQConsumer.cs ├── bin │ └── Debug │ │ └── netcoreapp2.0 │ │ ├── AccountsAuditConsumer.deps.json │ │ ├── AccountsAuditConsumer.dll │ │ ├── AccountsAuditConsumer.pdb │ │ ├── AccountsAuditConsumer.runtimeconfig.dev.json │ │ └── AccountsAuditConsumer.runtimeconfig.json └── obj │ ├── AccountsAuditConsumer.csproj.nuget.cache │ ├── AccountsAuditConsumer.csproj.nuget.g.props │ ├── AccountsAuditConsumer.csproj.nuget.g.targets │ ├── Debug │ └── netcoreapp2.0 │ │ ├── AccountsAuditConsumer.AssemblyInfo.cs │ │ ├── AccountsAuditConsumer.AssemblyInfoInputs.cache │ │ ├── AccountsAuditConsumer.csproj.CoreCompileInputs.cache │ │ ├── AccountsAuditConsumer.csproj.FileListAbsolute.txt │ │ ├── AccountsAuditConsumer.dll │ │ └── AccountsAuditConsumer.pdb │ └── project.assets.json ├── DirectPaymentCardConsumer ├── DirectPaymentCardConsumer.csproj ├── Program.cs ├── RabbitMQ │ ├── CardPayment.cs │ ├── ObjectSerialize.cs │ └── RabbitMQConsumer.cs ├── bin │ └── Debug │ │ └── netcoreapp2.0 │ │ ├── DirectPaymentCardConsumer.deps.json │ │ ├── DirectPaymentCardConsumer.dll │ │ ├── DirectPaymentCardConsumer.pdb │ │ ├── DirectPaymentCardConsumer.runtimeconfig.dev.json │ │ └── DirectPaymentCardConsumer.runtimeconfig.json └── obj │ ├── Debug │ └── netcoreapp2.0 │ │ ├── DirectPaymentCardConsumer.AssemblyInfo.cs │ │ ├── DirectPaymentCardConsumer.AssemblyInfoInputs.cache │ │ ├── DirectPaymentCardConsumer.csproj.CoreCompileInputs.cache │ │ ├── DirectPaymentCardConsumer.csproj.FileListAbsolute.txt │ │ ├── DirectPaymentCardConsumer.dll │ │ └── DirectPaymentCardConsumer.pdb │ ├── DirectPaymentCardConsumer.csproj.nuget.cache │ ├── DirectPaymentCardConsumer.csproj.nuget.g.props │ ├── DirectPaymentCardConsumer.csproj.nuget.g.targets │ └── project.assets.json ├── PaymentCardConsumer ├── PaymentCardConsumer.csproj ├── Program.cs ├── RabbitMQ │ ├── CardPayment.cs │ ├── ObjectSerialize.cs │ └── RabbitMQConsumer.cs ├── bin │ └── Debug │ │ └── netcoreapp2.0 │ │ ├── PaymentCardConsumer.deps.json │ │ ├── PaymentCardConsumer.dll │ │ ├── PaymentCardConsumer.pdb │ │ ├── PaymentCardConsumer.runtimeconfig.dev.json │ │ └── PaymentCardConsumer.runtimeconfig.json └── obj │ ├── Debug │ └── netcoreapp2.0 │ │ ├── PaymentCardConsumer.AssemblyInfo.cs │ │ ├── PaymentCardConsumer.AssemblyInfoInputs.cache │ │ ├── PaymentCardConsumer.csproj.CoreCompileInputs.cache │ │ ├── PaymentCardConsumer.csproj.FileListAbsolute.txt │ │ ├── PaymentCardConsumer.dll │ │ └── PaymentCardConsumer.pdb │ ├── PaymentCardConsumer.csproj.nuget.cache │ ├── PaymentCardConsumer.csproj.nuget.g.props │ ├── PaymentCardConsumer.csproj.nuget.g.targets │ └── project.assets.json ├── PurchaseOrderConsumer ├── Program.cs ├── PurchaseOrderConsumer.csproj ├── RabbitMQ │ ├── ObjectSerialize.cs │ ├── PurchaseOrder.cs │ └── RabbitMQConsumer.cs ├── bin │ └── Debug │ │ └── netcoreapp2.0 │ │ ├── PurchaseOrderConsumer.deps.json │ │ ├── PurchaseOrderConsumer.dll │ │ ├── PurchaseOrderConsumer.pdb │ │ ├── PurchaseOrderConsumer.runtimeconfig.dev.json │ │ └── PurchaseOrderConsumer.runtimeconfig.json └── obj │ ├── Debug │ └── netcoreapp2.0 │ │ ├── PurchaseOrderConsumer.AssemblyInfo.cs │ │ ├── PurchaseOrderConsumer.AssemblyInfoInputs.cache │ │ ├── PurchaseOrderConsumer.csproj.CoreCompileInputs.cache │ │ ├── PurchaseOrderConsumer.csproj.FileListAbsolute.txt │ │ ├── PurchaseOrderConsumer.dll │ │ └── PurchaseOrderConsumer.pdb │ ├── PurchaseOrderConsumer.csproj.nuget.cache │ ├── PurchaseOrderConsumer.csproj.nuget.g.props │ ├── PurchaseOrderConsumer.csproj.nuget.g.targets │ └── project.assets.json ├── packages ├── newtonsoft.json │ └── 10.0.3 │ │ ├── LICENSE.md │ │ ├── lib │ │ ├── net20 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net35 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net40 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net45 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── netstandard1.0 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── netstandard1.3 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── portable-net40+sl5+win8+wp8+wpa81 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ └── portable-net45+win8+wp8+wpa81 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── newtonsoft.json.10.0.3.nupkg │ │ ├── newtonsoft.json.10.0.3.nupkg.sha512 │ │ ├── newtonsoft.json.nuspec │ │ └── tools │ │ └── install.ps1 └── rabbitmq.client │ └── 5.0.1 │ ├── lib │ ├── net451 │ │ ├── RabbitMQ.Client.dll │ │ └── RabbitMQ.Client.xml │ └── netstandard1.5 │ │ ├── RabbitMQ.Client.dll │ │ └── RabbitMQ.Client.xml │ ├── rabbitmq.client.5.0.1.nupkg │ ├── rabbitmq.client.5.0.1.nupkg.sha512 │ └── rabbitmq.client.nuspec └── rabbitmq-example-api ├── .vscode ├── launch.json └── tasks.json ├── Controllers ├── DirectCardPaymentController.cs ├── QueueCardPaymentController.cs └── QueuePurchaseOrderController.cs ├── Models ├── CardPayment.cs └── PurchaseOrder.cs ├── Program.cs ├── RabbitMQ ├── ObjectSerialize.cs ├── RabbitMQClient.cs └── RabbitMQDirectClient.cs ├── Startup.cs ├── appsettings.Development.json ├── appsettings.json ├── bin └── Debug │ └── netcoreapp2.0 │ ├── rabbitmq-example-api.deps.json │ ├── rabbitmq-example-api.dll │ ├── rabbitmq-example-api.pdb │ ├── rabbitmq-example-api.runtimeconfig.dev.json │ └── rabbitmq-example-api.runtimeconfig.json ├── obj ├── Debug │ └── netcoreapp2.0 │ │ ├── rabbitmq-example-api.AssemblyInfo.cs │ │ ├── rabbitmq-example-api.AssemblyInfoInputs.cache │ │ ├── rabbitmq-example-api.csproj.CoreCompileInputs.cache │ │ ├── rabbitmq-example-api.csproj.FileListAbsolute.txt │ │ ├── rabbitmq-example-api.dll │ │ └── rabbitmq-example-api.pdb ├── project.assets.json ├── rabbitmq-example-api.csproj.nuget.cache ├── rabbitmq-example-api.csproj.nuget.g.props └── rabbitmq-example-api.csproj.nuget.g.targets └── rabbitmq-example-api.csproj /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /AccountsAuditConsumer/AccountsAuditConsumer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/AccountsAuditConsumer/AccountsAuditConsumer.csproj -------------------------------------------------------------------------------- /AccountsAuditConsumer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/AccountsAuditConsumer/Program.cs -------------------------------------------------------------------------------- /AccountsAuditConsumer/RabbitMQ/ObjectSerialize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/AccountsAuditConsumer/RabbitMQ/ObjectSerialize.cs -------------------------------------------------------------------------------- /AccountsAuditConsumer/RabbitMQ/RabbitMQConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/AccountsAuditConsumer/RabbitMQ/RabbitMQConsumer.cs -------------------------------------------------------------------------------- /AccountsAuditConsumer/bin/Debug/netcoreapp2.0/AccountsAuditConsumer.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/AccountsAuditConsumer/bin/Debug/netcoreapp2.0/AccountsAuditConsumer.deps.json -------------------------------------------------------------------------------- /AccountsAuditConsumer/bin/Debug/netcoreapp2.0/AccountsAuditConsumer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/AccountsAuditConsumer/bin/Debug/netcoreapp2.0/AccountsAuditConsumer.dll -------------------------------------------------------------------------------- /AccountsAuditConsumer/bin/Debug/netcoreapp2.0/AccountsAuditConsumer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/AccountsAuditConsumer/bin/Debug/netcoreapp2.0/AccountsAuditConsumer.pdb -------------------------------------------------------------------------------- /AccountsAuditConsumer/bin/Debug/netcoreapp2.0/AccountsAuditConsumer.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/AccountsAuditConsumer/bin/Debug/netcoreapp2.0/AccountsAuditConsumer.runtimeconfig.dev.json -------------------------------------------------------------------------------- /AccountsAuditConsumer/bin/Debug/netcoreapp2.0/AccountsAuditConsumer.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/AccountsAuditConsumer/bin/Debug/netcoreapp2.0/AccountsAuditConsumer.runtimeconfig.json -------------------------------------------------------------------------------- /AccountsAuditConsumer/obj/AccountsAuditConsumer.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/AccountsAuditConsumer/obj/AccountsAuditConsumer.csproj.nuget.cache -------------------------------------------------------------------------------- /AccountsAuditConsumer/obj/AccountsAuditConsumer.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/AccountsAuditConsumer/obj/AccountsAuditConsumer.csproj.nuget.g.props -------------------------------------------------------------------------------- /AccountsAuditConsumer/obj/AccountsAuditConsumer.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/AccountsAuditConsumer/obj/AccountsAuditConsumer.csproj.nuget.g.targets -------------------------------------------------------------------------------- /AccountsAuditConsumer/obj/Debug/netcoreapp2.0/AccountsAuditConsumer.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/AccountsAuditConsumer/obj/Debug/netcoreapp2.0/AccountsAuditConsumer.AssemblyInfo.cs -------------------------------------------------------------------------------- /AccountsAuditConsumer/obj/Debug/netcoreapp2.0/AccountsAuditConsumer.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 1d8f713086962763324b4181ab8fdc658bdd3460 2 | -------------------------------------------------------------------------------- /AccountsAuditConsumer/obj/Debug/netcoreapp2.0/AccountsAuditConsumer.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 4704383a70aa112b8d85035baf9097780ae78701 2 | -------------------------------------------------------------------------------- /AccountsAuditConsumer/obj/Debug/netcoreapp2.0/AccountsAuditConsumer.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/AccountsAuditConsumer/obj/Debug/netcoreapp2.0/AccountsAuditConsumer.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /AccountsAuditConsumer/obj/Debug/netcoreapp2.0/AccountsAuditConsumer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/AccountsAuditConsumer/obj/Debug/netcoreapp2.0/AccountsAuditConsumer.dll -------------------------------------------------------------------------------- /AccountsAuditConsumer/obj/Debug/netcoreapp2.0/AccountsAuditConsumer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/AccountsAuditConsumer/obj/Debug/netcoreapp2.0/AccountsAuditConsumer.pdb -------------------------------------------------------------------------------- /AccountsAuditConsumer/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/AccountsAuditConsumer/obj/project.assets.json -------------------------------------------------------------------------------- /DirectPaymentCardConsumer/DirectPaymentCardConsumer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/DirectPaymentCardConsumer/DirectPaymentCardConsumer.csproj -------------------------------------------------------------------------------- /DirectPaymentCardConsumer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/DirectPaymentCardConsumer/Program.cs -------------------------------------------------------------------------------- /DirectPaymentCardConsumer/RabbitMQ/CardPayment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/DirectPaymentCardConsumer/RabbitMQ/CardPayment.cs -------------------------------------------------------------------------------- /DirectPaymentCardConsumer/RabbitMQ/ObjectSerialize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/DirectPaymentCardConsumer/RabbitMQ/ObjectSerialize.cs -------------------------------------------------------------------------------- /DirectPaymentCardConsumer/RabbitMQ/RabbitMQConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/DirectPaymentCardConsumer/RabbitMQ/RabbitMQConsumer.cs -------------------------------------------------------------------------------- /DirectPaymentCardConsumer/bin/Debug/netcoreapp2.0/DirectPaymentCardConsumer.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/DirectPaymentCardConsumer/bin/Debug/netcoreapp2.0/DirectPaymentCardConsumer.deps.json -------------------------------------------------------------------------------- /DirectPaymentCardConsumer/bin/Debug/netcoreapp2.0/DirectPaymentCardConsumer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/DirectPaymentCardConsumer/bin/Debug/netcoreapp2.0/DirectPaymentCardConsumer.dll -------------------------------------------------------------------------------- /DirectPaymentCardConsumer/bin/Debug/netcoreapp2.0/DirectPaymentCardConsumer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/DirectPaymentCardConsumer/bin/Debug/netcoreapp2.0/DirectPaymentCardConsumer.pdb -------------------------------------------------------------------------------- /DirectPaymentCardConsumer/bin/Debug/netcoreapp2.0/DirectPaymentCardConsumer.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/DirectPaymentCardConsumer/bin/Debug/netcoreapp2.0/DirectPaymentCardConsumer.runtimeconfig.dev.json -------------------------------------------------------------------------------- /DirectPaymentCardConsumer/bin/Debug/netcoreapp2.0/DirectPaymentCardConsumer.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/DirectPaymentCardConsumer/bin/Debug/netcoreapp2.0/DirectPaymentCardConsumer.runtimeconfig.json -------------------------------------------------------------------------------- /DirectPaymentCardConsumer/obj/Debug/netcoreapp2.0/DirectPaymentCardConsumer.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/DirectPaymentCardConsumer/obj/Debug/netcoreapp2.0/DirectPaymentCardConsumer.AssemblyInfo.cs -------------------------------------------------------------------------------- /DirectPaymentCardConsumer/obj/Debug/netcoreapp2.0/DirectPaymentCardConsumer.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | b8a21ece59c3b3bbdf3573ee9ad7622c6ceac011 2 | -------------------------------------------------------------------------------- /DirectPaymentCardConsumer/obj/Debug/netcoreapp2.0/DirectPaymentCardConsumer.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 52e0e6e60ccc3529008d58bcbebd162b7f5d75bb 2 | -------------------------------------------------------------------------------- /DirectPaymentCardConsumer/obj/Debug/netcoreapp2.0/DirectPaymentCardConsumer.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/DirectPaymentCardConsumer/obj/Debug/netcoreapp2.0/DirectPaymentCardConsumer.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /DirectPaymentCardConsumer/obj/Debug/netcoreapp2.0/DirectPaymentCardConsumer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/DirectPaymentCardConsumer/obj/Debug/netcoreapp2.0/DirectPaymentCardConsumer.dll -------------------------------------------------------------------------------- /DirectPaymentCardConsumer/obj/Debug/netcoreapp2.0/DirectPaymentCardConsumer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/DirectPaymentCardConsumer/obj/Debug/netcoreapp2.0/DirectPaymentCardConsumer.pdb -------------------------------------------------------------------------------- /DirectPaymentCardConsumer/obj/DirectPaymentCardConsumer.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/DirectPaymentCardConsumer/obj/DirectPaymentCardConsumer.csproj.nuget.cache -------------------------------------------------------------------------------- /DirectPaymentCardConsumer/obj/DirectPaymentCardConsumer.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/DirectPaymentCardConsumer/obj/DirectPaymentCardConsumer.csproj.nuget.g.props -------------------------------------------------------------------------------- /DirectPaymentCardConsumer/obj/DirectPaymentCardConsumer.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/DirectPaymentCardConsumer/obj/DirectPaymentCardConsumer.csproj.nuget.g.targets -------------------------------------------------------------------------------- /DirectPaymentCardConsumer/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/DirectPaymentCardConsumer/obj/project.assets.json -------------------------------------------------------------------------------- /PaymentCardConsumer/PaymentCardConsumer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/PaymentCardConsumer/PaymentCardConsumer.csproj -------------------------------------------------------------------------------- /PaymentCardConsumer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/PaymentCardConsumer/Program.cs -------------------------------------------------------------------------------- /PaymentCardConsumer/RabbitMQ/CardPayment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/PaymentCardConsumer/RabbitMQ/CardPayment.cs -------------------------------------------------------------------------------- /PaymentCardConsumer/RabbitMQ/ObjectSerialize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/PaymentCardConsumer/RabbitMQ/ObjectSerialize.cs -------------------------------------------------------------------------------- /PaymentCardConsumer/RabbitMQ/RabbitMQConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/PaymentCardConsumer/RabbitMQ/RabbitMQConsumer.cs -------------------------------------------------------------------------------- /PaymentCardConsumer/bin/Debug/netcoreapp2.0/PaymentCardConsumer.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/PaymentCardConsumer/bin/Debug/netcoreapp2.0/PaymentCardConsumer.deps.json -------------------------------------------------------------------------------- /PaymentCardConsumer/bin/Debug/netcoreapp2.0/PaymentCardConsumer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/PaymentCardConsumer/bin/Debug/netcoreapp2.0/PaymentCardConsumer.dll -------------------------------------------------------------------------------- /PaymentCardConsumer/bin/Debug/netcoreapp2.0/PaymentCardConsumer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/PaymentCardConsumer/bin/Debug/netcoreapp2.0/PaymentCardConsumer.pdb -------------------------------------------------------------------------------- /PaymentCardConsumer/bin/Debug/netcoreapp2.0/PaymentCardConsumer.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/PaymentCardConsumer/bin/Debug/netcoreapp2.0/PaymentCardConsumer.runtimeconfig.dev.json -------------------------------------------------------------------------------- /PaymentCardConsumer/bin/Debug/netcoreapp2.0/PaymentCardConsumer.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/PaymentCardConsumer/bin/Debug/netcoreapp2.0/PaymentCardConsumer.runtimeconfig.json -------------------------------------------------------------------------------- /PaymentCardConsumer/obj/Debug/netcoreapp2.0/PaymentCardConsumer.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/PaymentCardConsumer/obj/Debug/netcoreapp2.0/PaymentCardConsumer.AssemblyInfo.cs -------------------------------------------------------------------------------- /PaymentCardConsumer/obj/Debug/netcoreapp2.0/PaymentCardConsumer.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 8744a9939adfba818da6d9b8d2b73dbee83675a3 2 | -------------------------------------------------------------------------------- /PaymentCardConsumer/obj/Debug/netcoreapp2.0/PaymentCardConsumer.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 034f002f42ac230dd91a5bf4a202d18739c4828e 2 | -------------------------------------------------------------------------------- /PaymentCardConsumer/obj/Debug/netcoreapp2.0/PaymentCardConsumer.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/PaymentCardConsumer/obj/Debug/netcoreapp2.0/PaymentCardConsumer.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /PaymentCardConsumer/obj/Debug/netcoreapp2.0/PaymentCardConsumer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/PaymentCardConsumer/obj/Debug/netcoreapp2.0/PaymentCardConsumer.dll -------------------------------------------------------------------------------- /PaymentCardConsumer/obj/Debug/netcoreapp2.0/PaymentCardConsumer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/PaymentCardConsumer/obj/Debug/netcoreapp2.0/PaymentCardConsumer.pdb -------------------------------------------------------------------------------- /PaymentCardConsumer/obj/PaymentCardConsumer.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/PaymentCardConsumer/obj/PaymentCardConsumer.csproj.nuget.cache -------------------------------------------------------------------------------- /PaymentCardConsumer/obj/PaymentCardConsumer.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/PaymentCardConsumer/obj/PaymentCardConsumer.csproj.nuget.g.props -------------------------------------------------------------------------------- /PaymentCardConsumer/obj/PaymentCardConsumer.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/PaymentCardConsumer/obj/PaymentCardConsumer.csproj.nuget.g.targets -------------------------------------------------------------------------------- /PaymentCardConsumer/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/PaymentCardConsumer/obj/project.assets.json -------------------------------------------------------------------------------- /PurchaseOrderConsumer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/PurchaseOrderConsumer/Program.cs -------------------------------------------------------------------------------- /PurchaseOrderConsumer/PurchaseOrderConsumer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/PurchaseOrderConsumer/PurchaseOrderConsumer.csproj -------------------------------------------------------------------------------- /PurchaseOrderConsumer/RabbitMQ/ObjectSerialize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/PurchaseOrderConsumer/RabbitMQ/ObjectSerialize.cs -------------------------------------------------------------------------------- /PurchaseOrderConsumer/RabbitMQ/PurchaseOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/PurchaseOrderConsumer/RabbitMQ/PurchaseOrder.cs -------------------------------------------------------------------------------- /PurchaseOrderConsumer/RabbitMQ/RabbitMQConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/PurchaseOrderConsumer/RabbitMQ/RabbitMQConsumer.cs -------------------------------------------------------------------------------- /PurchaseOrderConsumer/bin/Debug/netcoreapp2.0/PurchaseOrderConsumer.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/PurchaseOrderConsumer/bin/Debug/netcoreapp2.0/PurchaseOrderConsumer.deps.json -------------------------------------------------------------------------------- /PurchaseOrderConsumer/bin/Debug/netcoreapp2.0/PurchaseOrderConsumer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/PurchaseOrderConsumer/bin/Debug/netcoreapp2.0/PurchaseOrderConsumer.dll -------------------------------------------------------------------------------- /PurchaseOrderConsumer/bin/Debug/netcoreapp2.0/PurchaseOrderConsumer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/PurchaseOrderConsumer/bin/Debug/netcoreapp2.0/PurchaseOrderConsumer.pdb -------------------------------------------------------------------------------- /PurchaseOrderConsumer/bin/Debug/netcoreapp2.0/PurchaseOrderConsumer.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/PurchaseOrderConsumer/bin/Debug/netcoreapp2.0/PurchaseOrderConsumer.runtimeconfig.dev.json -------------------------------------------------------------------------------- /PurchaseOrderConsumer/bin/Debug/netcoreapp2.0/PurchaseOrderConsumer.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/PurchaseOrderConsumer/bin/Debug/netcoreapp2.0/PurchaseOrderConsumer.runtimeconfig.json -------------------------------------------------------------------------------- /PurchaseOrderConsumer/obj/Debug/netcoreapp2.0/PurchaseOrderConsumer.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/PurchaseOrderConsumer/obj/Debug/netcoreapp2.0/PurchaseOrderConsumer.AssemblyInfo.cs -------------------------------------------------------------------------------- /PurchaseOrderConsumer/obj/Debug/netcoreapp2.0/PurchaseOrderConsumer.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 519fba00851dc4c995766a622aa5b4a770432b34 2 | -------------------------------------------------------------------------------- /PurchaseOrderConsumer/obj/Debug/netcoreapp2.0/PurchaseOrderConsumer.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | fe3d56fbc4463e22e2b9d9cf8ff981e0147b9b93 2 | -------------------------------------------------------------------------------- /PurchaseOrderConsumer/obj/Debug/netcoreapp2.0/PurchaseOrderConsumer.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/PurchaseOrderConsumer/obj/Debug/netcoreapp2.0/PurchaseOrderConsumer.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /PurchaseOrderConsumer/obj/Debug/netcoreapp2.0/PurchaseOrderConsumer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/PurchaseOrderConsumer/obj/Debug/netcoreapp2.0/PurchaseOrderConsumer.dll -------------------------------------------------------------------------------- /PurchaseOrderConsumer/obj/Debug/netcoreapp2.0/PurchaseOrderConsumer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/PurchaseOrderConsumer/obj/Debug/netcoreapp2.0/PurchaseOrderConsumer.pdb -------------------------------------------------------------------------------- /PurchaseOrderConsumer/obj/PurchaseOrderConsumer.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/PurchaseOrderConsumer/obj/PurchaseOrderConsumer.csproj.nuget.cache -------------------------------------------------------------------------------- /PurchaseOrderConsumer/obj/PurchaseOrderConsumer.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/PurchaseOrderConsumer/obj/PurchaseOrderConsumer.csproj.nuget.g.props -------------------------------------------------------------------------------- /PurchaseOrderConsumer/obj/PurchaseOrderConsumer.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/PurchaseOrderConsumer/obj/PurchaseOrderConsumer.csproj.nuget.g.targets -------------------------------------------------------------------------------- /PurchaseOrderConsumer/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/PurchaseOrderConsumer/obj/project.assets.json -------------------------------------------------------------------------------- /packages/newtonsoft.json/10.0.3/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/packages/newtonsoft.json/10.0.3/LICENSE.md -------------------------------------------------------------------------------- /packages/newtonsoft.json/10.0.3/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/packages/newtonsoft.json/10.0.3/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/newtonsoft.json/10.0.3/lib/net20/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/packages/newtonsoft.json/10.0.3/lib/net20/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/newtonsoft.json/10.0.3/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/packages/newtonsoft.json/10.0.3/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/newtonsoft.json/10.0.3/lib/net35/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/packages/newtonsoft.json/10.0.3/lib/net35/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/newtonsoft.json/10.0.3/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/packages/newtonsoft.json/10.0.3/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/newtonsoft.json/10.0.3/lib/net40/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/packages/newtonsoft.json/10.0.3/lib/net40/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/newtonsoft.json/10.0.3/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/packages/newtonsoft.json/10.0.3/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/newtonsoft.json/10.0.3/lib/net45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/packages/newtonsoft.json/10.0.3/lib/net45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/newtonsoft.json/10.0.3/lib/netstandard1.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/packages/newtonsoft.json/10.0.3/lib/netstandard1.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/newtonsoft.json/10.0.3/lib/netstandard1.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/packages/newtonsoft.json/10.0.3/lib/netstandard1.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/newtonsoft.json/10.0.3/lib/netstandard1.3/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/packages/newtonsoft.json/10.0.3/lib/netstandard1.3/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/newtonsoft.json/10.0.3/lib/netstandard1.3/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/packages/newtonsoft.json/10.0.3/lib/netstandard1.3/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/newtonsoft.json/10.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/packages/newtonsoft.json/10.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/newtonsoft.json/10.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/packages/newtonsoft.json/10.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/newtonsoft.json/10.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/packages/newtonsoft.json/10.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/newtonsoft.json/10.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/packages/newtonsoft.json/10.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/newtonsoft.json/10.0.3/newtonsoft.json.10.0.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/packages/newtonsoft.json/10.0.3/newtonsoft.json.10.0.3.nupkg -------------------------------------------------------------------------------- /packages/newtonsoft.json/10.0.3/newtonsoft.json.10.0.3.nupkg.sha512: -------------------------------------------------------------------------------- 1 | hSXaFmh7hNCuEoC4XNY5DrRkLDzYHqPx/Ik23R4J86Z7PE/Y6YidhG602dFVdLBRSdG6xp9NabH3dXpcoxWvww== -------------------------------------------------------------------------------- /packages/newtonsoft.json/10.0.3/newtonsoft.json.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/packages/newtonsoft.json/10.0.3/newtonsoft.json.nuspec -------------------------------------------------------------------------------- /packages/newtonsoft.json/10.0.3/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/packages/newtonsoft.json/10.0.3/tools/install.ps1 -------------------------------------------------------------------------------- /packages/rabbitmq.client/5.0.1/lib/net451/RabbitMQ.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/packages/rabbitmq.client/5.0.1/lib/net451/RabbitMQ.Client.dll -------------------------------------------------------------------------------- /packages/rabbitmq.client/5.0.1/lib/net451/RabbitMQ.Client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/packages/rabbitmq.client/5.0.1/lib/net451/RabbitMQ.Client.xml -------------------------------------------------------------------------------- /packages/rabbitmq.client/5.0.1/lib/netstandard1.5/RabbitMQ.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/packages/rabbitmq.client/5.0.1/lib/netstandard1.5/RabbitMQ.Client.dll -------------------------------------------------------------------------------- /packages/rabbitmq.client/5.0.1/lib/netstandard1.5/RabbitMQ.Client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/packages/rabbitmq.client/5.0.1/lib/netstandard1.5/RabbitMQ.Client.xml -------------------------------------------------------------------------------- /packages/rabbitmq.client/5.0.1/rabbitmq.client.5.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/packages/rabbitmq.client/5.0.1/rabbitmq.client.5.0.1.nupkg -------------------------------------------------------------------------------- /packages/rabbitmq.client/5.0.1/rabbitmq.client.5.0.1.nupkg.sha512: -------------------------------------------------------------------------------- 1 | 89eFEAr5mV5GG2H3d4WFZEuhKmCR+EUjcphZ4+QLEkHPdo7B9kRH6X5WS0c6bHAY/B48uR0GuubnMTp5jGGmrA== -------------------------------------------------------------------------------- /packages/rabbitmq.client/5.0.1/rabbitmq.client.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/packages/rabbitmq.client/5.0.1/rabbitmq.client.nuspec -------------------------------------------------------------------------------- /rabbitmq-example-api/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/rabbitmq-example-api/.vscode/launch.json -------------------------------------------------------------------------------- /rabbitmq-example-api/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/rabbitmq-example-api/.vscode/tasks.json -------------------------------------------------------------------------------- /rabbitmq-example-api/Controllers/DirectCardPaymentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/rabbitmq-example-api/Controllers/DirectCardPaymentController.cs -------------------------------------------------------------------------------- /rabbitmq-example-api/Controllers/QueueCardPaymentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/rabbitmq-example-api/Controllers/QueueCardPaymentController.cs -------------------------------------------------------------------------------- /rabbitmq-example-api/Controllers/QueuePurchaseOrderController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/rabbitmq-example-api/Controllers/QueuePurchaseOrderController.cs -------------------------------------------------------------------------------- /rabbitmq-example-api/Models/CardPayment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/rabbitmq-example-api/Models/CardPayment.cs -------------------------------------------------------------------------------- /rabbitmq-example-api/Models/PurchaseOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/rabbitmq-example-api/Models/PurchaseOrder.cs -------------------------------------------------------------------------------- /rabbitmq-example-api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/rabbitmq-example-api/Program.cs -------------------------------------------------------------------------------- /rabbitmq-example-api/RabbitMQ/ObjectSerialize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/rabbitmq-example-api/RabbitMQ/ObjectSerialize.cs -------------------------------------------------------------------------------- /rabbitmq-example-api/RabbitMQ/RabbitMQClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/rabbitmq-example-api/RabbitMQ/RabbitMQClient.cs -------------------------------------------------------------------------------- /rabbitmq-example-api/RabbitMQ/RabbitMQDirectClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/rabbitmq-example-api/RabbitMQ/RabbitMQDirectClient.cs -------------------------------------------------------------------------------- /rabbitmq-example-api/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/rabbitmq-example-api/Startup.cs -------------------------------------------------------------------------------- /rabbitmq-example-api/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/rabbitmq-example-api/appsettings.Development.json -------------------------------------------------------------------------------- /rabbitmq-example-api/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/rabbitmq-example-api/appsettings.json -------------------------------------------------------------------------------- /rabbitmq-example-api/bin/Debug/netcoreapp2.0/rabbitmq-example-api.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/rabbitmq-example-api/bin/Debug/netcoreapp2.0/rabbitmq-example-api.deps.json -------------------------------------------------------------------------------- /rabbitmq-example-api/bin/Debug/netcoreapp2.0/rabbitmq-example-api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/rabbitmq-example-api/bin/Debug/netcoreapp2.0/rabbitmq-example-api.dll -------------------------------------------------------------------------------- /rabbitmq-example-api/bin/Debug/netcoreapp2.0/rabbitmq-example-api.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/rabbitmq-example-api/bin/Debug/netcoreapp2.0/rabbitmq-example-api.pdb -------------------------------------------------------------------------------- /rabbitmq-example-api/bin/Debug/netcoreapp2.0/rabbitmq-example-api.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/rabbitmq-example-api/bin/Debug/netcoreapp2.0/rabbitmq-example-api.runtimeconfig.dev.json -------------------------------------------------------------------------------- /rabbitmq-example-api/bin/Debug/netcoreapp2.0/rabbitmq-example-api.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/rabbitmq-example-api/bin/Debug/netcoreapp2.0/rabbitmq-example-api.runtimeconfig.json -------------------------------------------------------------------------------- /rabbitmq-example-api/obj/Debug/netcoreapp2.0/rabbitmq-example-api.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/rabbitmq-example-api/obj/Debug/netcoreapp2.0/rabbitmq-example-api.AssemblyInfo.cs -------------------------------------------------------------------------------- /rabbitmq-example-api/obj/Debug/netcoreapp2.0/rabbitmq-example-api.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | bcbded1ffd1597f5bd4599c676ab4f0e4317d754 2 | -------------------------------------------------------------------------------- /rabbitmq-example-api/obj/Debug/netcoreapp2.0/rabbitmq-example-api.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 4974a46936c27b619a50b9feb181c06acfb2722f 2 | -------------------------------------------------------------------------------- /rabbitmq-example-api/obj/Debug/netcoreapp2.0/rabbitmq-example-api.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/rabbitmq-example-api/obj/Debug/netcoreapp2.0/rabbitmq-example-api.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /rabbitmq-example-api/obj/Debug/netcoreapp2.0/rabbitmq-example-api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/rabbitmq-example-api/obj/Debug/netcoreapp2.0/rabbitmq-example-api.dll -------------------------------------------------------------------------------- /rabbitmq-example-api/obj/Debug/netcoreapp2.0/rabbitmq-example-api.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/rabbitmq-example-api/obj/Debug/netcoreapp2.0/rabbitmq-example-api.pdb -------------------------------------------------------------------------------- /rabbitmq-example-api/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/rabbitmq-example-api/obj/project.assets.json -------------------------------------------------------------------------------- /rabbitmq-example-api/obj/rabbitmq-example-api.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/rabbitmq-example-api/obj/rabbitmq-example-api.csproj.nuget.cache -------------------------------------------------------------------------------- /rabbitmq-example-api/obj/rabbitmq-example-api.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/rabbitmq-example-api/obj/rabbitmq-example-api.csproj.nuget.g.props -------------------------------------------------------------------------------- /rabbitmq-example-api/obj/rabbitmq-example-api.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/rabbitmq-example-api/obj/rabbitmq-example-api.csproj.nuget.g.targets -------------------------------------------------------------------------------- /rabbitmq-example-api/rabbitmq-example-api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tofraley/dotnet-core-rabbitmq-example/HEAD/rabbitmq-example-api/rabbitmq-example-api.csproj --------------------------------------------------------------------------------