├── .vs └── DemandManagement │ ├── config │ └── applicationhost.config │ └── v16 │ └── .suo ├── DemandManagement.Api ├── Controllers │ └── DemandController.cs ├── DemandManagement.Api.csproj ├── DemandManagement.Api.csproj.user ├── Model │ └── RegisterDemandModel.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── appsettings.Development.json ├── appsettings.json ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── Automatonymous.dll │ │ ├── DemandManagement.Api.deps.json │ │ ├── DemandManagement.Api.dll │ │ ├── DemandManagement.Api.exe │ │ ├── DemandManagement.Api.pdb │ │ ├── DemandManagement.Api.runtimeconfig.dev.json │ │ ├── DemandManagement.Api.runtimeconfig.json │ │ ├── DemandManagement.MessageContracts.dll │ │ ├── DemandManagement.MessageContracts.pdb │ │ ├── GreenPipes.dll │ │ ├── MassTransit.RabbitMqTransport.dll │ │ ├── MassTransit.dll │ │ ├── Microsoft.AspNetCore.Razor.Language.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.dll │ │ ├── Microsoft.CodeAnalysis.Razor.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.dll │ │ ├── Microsoft.CodeAnalysis.dll │ │ ├── Microsoft.Extensions.PlatformAbstractions.dll │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Core.dll │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.dll │ │ ├── Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll │ │ ├── NewId.dll │ │ ├── Newtonsoft.Json.Bson.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── NuGet.Frameworks.dll │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── RabbitMQ.Client.dll │ │ ├── System.Composition.AttributedModel.dll │ │ ├── System.Composition.Convention.dll │ │ ├── System.Composition.Hosting.dll │ │ ├── System.Composition.Runtime.dll │ │ ├── System.Composition.TypedParts.dll │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── cs │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── de │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── dotnet-aspnet-codegenerator-design.dll │ │ ├── es │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── fr │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── it │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── ja │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── ko │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── pl │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── pt-BR │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── ru │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── tr │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── zh-Hans │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ └── zh-Hant │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll └── obj │ ├── Debug │ └── netcoreapp3.1 │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ ├── DemandManagement.Api.AssemblyInfo.cs │ │ ├── DemandManagement.Api.AssemblyInfoInputs.cache │ │ ├── DemandManagement.Api.MvcApplicationPartsAssemblyInfo.cache │ │ ├── DemandManagement.Api.RazorTargetAssemblyInfo.cache │ │ ├── DemandManagement.Api.assets.cache │ │ ├── DemandManagement.Api.csproj.CopyComplete │ │ ├── DemandManagement.Api.csproj.CoreCompileInputs.cache │ │ ├── DemandManagement.Api.csproj.FileListAbsolute.txt │ │ ├── DemandManagement.Api.csprojAssemblyReference.cache │ │ ├── DemandManagement.Api.dll │ │ ├── DemandManagement.Api.exe │ │ ├── DemandManagement.Api.genruntimeconfig.cache │ │ ├── DemandManagement.Api.pdb │ │ ├── apphost.exe │ │ └── staticwebassets │ │ ├── DemandManagement.Api.StaticWebAssets.Manifest.cache │ │ └── DemandManagement.Api.StaticWebAssets.xml │ ├── DemandManagement.Api.csproj.nuget.cache │ ├── DemandManagement.Api.csproj.nuget.dgspec.json │ ├── DemandManagement.Api.csproj.nuget.g.props │ ├── DemandManagement.Api.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── DemandManagement.MessageContracts ├── BusConfigurater.cs ├── DemandManagement.MessageContracts.csproj ├── IRegisterDemandCommand.cs ├── IRegisteredDemandEvent.cs ├── RabbitMqConsts.cs ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── DemandManagement.MessageContracts.deps.json │ │ ├── DemandManagement.MessageContracts.dll │ │ └── DemandManagement.MessageContracts.pdb └── obj │ ├── Debug │ └── netcoreapp3.1 │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ ├── DemandManagement.MessageContracts.AssemblyInfo.cs │ │ ├── DemandManagement.MessageContracts.AssemblyInfoInputs.cache │ │ ├── DemandManagement.MessageContracts.assets.cache │ │ ├── DemandManagement.MessageContracts.csproj.CoreCompileInputs.cache │ │ ├── DemandManagement.MessageContracts.csproj.FileListAbsolute.txt │ │ ├── DemandManagement.MessageContracts.csprojAssemblyReference.cache │ │ ├── DemandManagement.MessageContracts.dll │ │ └── DemandManagement.MessageContracts.pdb │ ├── DemandManagement.MessageContracts.csproj.nuget.cache │ ├── DemandManagement.MessageContracts.csproj.nuget.dgspec.json │ ├── DemandManagement.MessageContracts.csproj.nuget.g.props │ ├── DemandManagement.MessageContracts.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── DemandManagement.Notification ├── DemandManagement.Notification.csproj ├── DemandRegisteredEventConsumer.cs ├── Program.cs ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── Automatonymous.dll │ │ ├── DemandManagement.MessageContracts.dll │ │ ├── DemandManagement.MessageContracts.pdb │ │ ├── DemandManagement.Notification.deps.json │ │ ├── DemandManagement.Notification.dll │ │ ├── DemandManagement.Notification.exe │ │ ├── DemandManagement.Notification.pdb │ │ ├── DemandManagement.Notification.runtimeconfig.dev.json │ │ ├── DemandManagement.Notification.runtimeconfig.json │ │ ├── GreenPipes.dll │ │ ├── MassTransit.RabbitMqTransport.dll │ │ ├── MassTransit.dll │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ ├── Microsoft.Extensions.PlatformAbstractions.dll │ │ ├── NewId.dll │ │ ├── Newtonsoft.Json.Bson.dll │ │ ├── Newtonsoft.Json.dll │ │ └── RabbitMQ.Client.dll └── obj │ ├── Debug │ └── netcoreapp3.1 │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ ├── DemandManagement.Notification.AssemblyInfo.cs │ │ ├── DemandManagement.Notification.AssemblyInfoInputs.cache │ │ ├── DemandManagement.Notification.assets.cache │ │ ├── DemandManagement.Notification.csproj.CopyComplete │ │ ├── DemandManagement.Notification.csproj.CoreCompileInputs.cache │ │ ├── DemandManagement.Notification.csproj.FileListAbsolute.txt │ │ ├── DemandManagement.Notification.csprojAssemblyReference.cache │ │ ├── DemandManagement.Notification.dll │ │ ├── DemandManagement.Notification.exe │ │ ├── DemandManagement.Notification.genruntimeconfig.cache │ │ ├── DemandManagement.Notification.pdb │ │ └── apphost.exe │ ├── DemandManagement.Notification.csproj.nuget.cache │ ├── DemandManagement.Notification.csproj.nuget.dgspec.json │ ├── DemandManagement.Notification.csproj.nuget.g.props │ ├── DemandManagement.Notification.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── DemandManagement.Registration ├── DemandManagement.Registration.csproj ├── Program.cs ├── RegisterDemandCommandConsumer.cs ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── Automatonymous.dll │ │ ├── DemandManagement.MessageContracts.dll │ │ ├── DemandManagement.MessageContracts.pdb │ │ ├── DemandManagement.Registration.deps.json │ │ ├── DemandManagement.Registration.dll │ │ ├── DemandManagement.Registration.exe │ │ ├── DemandManagement.Registration.pdb │ │ ├── DemandManagement.Registration.runtimeconfig.dev.json │ │ ├── DemandManagement.Registration.runtimeconfig.json │ │ ├── GreenPipes.dll │ │ ├── MassTransit.RabbitMqTransport.dll │ │ ├── MassTransit.dll │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ ├── Microsoft.Extensions.PlatformAbstractions.dll │ │ ├── NewId.dll │ │ ├── Newtonsoft.Json.Bson.dll │ │ ├── Newtonsoft.Json.dll │ │ └── RabbitMQ.Client.dll └── obj │ ├── Debug │ └── netcoreapp3.1 │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ ├── DemandManagement.Registration.AssemblyInfo.cs │ │ ├── DemandManagement.Registration.AssemblyInfoInputs.cache │ │ ├── DemandManagement.Registration.assets.cache │ │ ├── DemandManagement.Registration.csproj.CopyComplete │ │ ├── DemandManagement.Registration.csproj.CoreCompileInputs.cache │ │ ├── DemandManagement.Registration.csproj.FileListAbsolute.txt │ │ ├── DemandManagement.Registration.csprojAssemblyReference.cache │ │ ├── DemandManagement.Registration.dll │ │ ├── DemandManagement.Registration.exe │ │ ├── DemandManagement.Registration.genruntimeconfig.cache │ │ ├── DemandManagement.Registration.pdb │ │ └── apphost.exe │ ├── DemandManagement.Registration.csproj.nuget.cache │ ├── DemandManagement.Registration.csproj.nuget.dgspec.json │ ├── DemandManagement.Registration.csproj.nuget.g.props │ ├── DemandManagement.Registration.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── DemandManagement.Thirdparty.Service ├── DemandManagement.Thirdparty.Service.csproj ├── DemandRegisteredEventConsumer.cs ├── Program.cs ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── Automatonymous.dll │ │ ├── DemandManagement.MessageContracts.dll │ │ ├── DemandManagement.MessageContracts.pdb │ │ ├── DemandManagement.Thirdparty.Service.deps.json │ │ ├── DemandManagement.Thirdparty.Service.dll │ │ ├── DemandManagement.Thirdparty.Service.exe │ │ ├── DemandManagement.Thirdparty.Service.pdb │ │ ├── DemandManagement.Thirdparty.Service.runtimeconfig.dev.json │ │ ├── DemandManagement.Thirdparty.Service.runtimeconfig.json │ │ ├── GreenPipes.dll │ │ ├── MassTransit.RabbitMqTransport.dll │ │ ├── MassTransit.dll │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ ├── Microsoft.Extensions.PlatformAbstractions.dll │ │ ├── NewId.dll │ │ ├── Newtonsoft.Json.Bson.dll │ │ ├── Newtonsoft.Json.dll │ │ └── RabbitMQ.Client.dll └── obj │ ├── Debug │ └── netcoreapp3.1 │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ ├── DemandManagement.Thirdparty.Service.AssemblyInfo.cs │ │ ├── DemandManagement.Thirdparty.Service.AssemblyInfoInputs.cache │ │ ├── DemandManagement.Thirdparty.Service.assets.cache │ │ ├── DemandManagement.Thirdparty.Service.csproj.CopyComplete │ │ ├── DemandManagement.Thirdparty.Service.csproj.CoreCompileInputs.cache │ │ ├── DemandManagement.Thirdparty.Service.csproj.FileListAbsolute.txt │ │ ├── DemandManagement.Thirdparty.Service.csprojAssemblyReference.cache │ │ ├── DemandManagement.Thirdparty.Service.dll │ │ ├── DemandManagement.Thirdparty.Service.exe │ │ ├── DemandManagement.Thirdparty.Service.genruntimeconfig.cache │ │ ├── DemandManagement.Thirdparty.Service.pdb │ │ └── apphost.exe │ ├── DemandManagement.Thirdparty.Service.csproj.nuget.cache │ ├── DemandManagement.Thirdparty.Service.csproj.nuget.dgspec.json │ ├── DemandManagement.Thirdparty.Service.csproj.nuget.g.props │ ├── DemandManagement.Thirdparty.Service.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache └── DemandManagement.sln /.vs/DemandManagement/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/.vs/DemandManagement/config/applicationhost.config -------------------------------------------------------------------------------- /.vs/DemandManagement/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/.vs/DemandManagement/v16/.suo -------------------------------------------------------------------------------- /DemandManagement.Api/Controllers/DemandController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/Controllers/DemandController.cs -------------------------------------------------------------------------------- /DemandManagement.Api/DemandManagement.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/DemandManagement.Api.csproj -------------------------------------------------------------------------------- /DemandManagement.Api/DemandManagement.Api.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/DemandManagement.Api.csproj.user -------------------------------------------------------------------------------- /DemandManagement.Api/Model/RegisterDemandModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/Model/RegisterDemandModel.cs -------------------------------------------------------------------------------- /DemandManagement.Api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/Program.cs -------------------------------------------------------------------------------- /DemandManagement.Api/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/Properties/launchSettings.json -------------------------------------------------------------------------------- /DemandManagement.Api/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/Startup.cs -------------------------------------------------------------------------------- /DemandManagement.Api/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/appsettings.Development.json -------------------------------------------------------------------------------- /DemandManagement.Api/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/appsettings.json -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/Automatonymous.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/Automatonymous.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/DemandManagement.Api.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/DemandManagement.Api.deps.json -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/DemandManagement.Api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/DemandManagement.Api.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/DemandManagement.Api.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/DemandManagement.Api.exe -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/DemandManagement.Api.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/DemandManagement.Api.pdb -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/DemandManagement.Api.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/DemandManagement.Api.runtimeconfig.dev.json -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/DemandManagement.Api.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/DemandManagement.Api.runtimeconfig.json -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/DemandManagement.MessageContracts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/DemandManagement.MessageContracts.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/DemandManagement.MessageContracts.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/DemandManagement.MessageContracts.pdb -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/GreenPipes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/GreenPipes.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/MassTransit.RabbitMqTransport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/MassTransit.RabbitMqTransport.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/MassTransit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/MassTransit.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Razor.Language.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Razor.Language.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.Razor.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/Microsoft.Extensions.PlatformAbstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/Microsoft.Extensions.PlatformAbstractions.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/NewId.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/NewId.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/Newtonsoft.Json.Bson.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/Newtonsoft.Json.Bson.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/NuGet.Frameworks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/NuGet.Frameworks.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/Properties/launchSettings.json -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/RabbitMQ.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/RabbitMQ.Client.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/System.Composition.AttributedModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/System.Composition.AttributedModel.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/System.Composition.Convention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/System.Composition.Convention.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/System.Composition.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/System.Composition.Hosting.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/System.Composition.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/System.Composition.Runtime.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/System.Composition.TypedParts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/System.Composition.TypedParts.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/appsettings.Development.json -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/appsettings.json -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/dotnet-aspnet-codegenerator-design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/dotnet-aspnet-codegenerator-design.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /DemandManagement.Api/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs -------------------------------------------------------------------------------- /DemandManagement.Api/obj/Debug/netcoreapp3.1/DemandManagement.Api.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/obj/Debug/netcoreapp3.1/DemandManagement.Api.AssemblyInfo.cs -------------------------------------------------------------------------------- /DemandManagement.Api/obj/Debug/netcoreapp3.1/DemandManagement.Api.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | a3a157b96676490ac7ea841762ae9710147b0f64 2 | -------------------------------------------------------------------------------- /DemandManagement.Api/obj/Debug/netcoreapp3.1/DemandManagement.Api.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DemandManagement.Api/obj/Debug/netcoreapp3.1/DemandManagement.Api.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | ebd97a1efcd62f635838042c49398eef211b0ecd 2 | -------------------------------------------------------------------------------- /DemandManagement.Api/obj/Debug/netcoreapp3.1/DemandManagement.Api.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/obj/Debug/netcoreapp3.1/DemandManagement.Api.assets.cache -------------------------------------------------------------------------------- /DemandManagement.Api/obj/Debug/netcoreapp3.1/DemandManagement.Api.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DemandManagement.Api/obj/Debug/netcoreapp3.1/DemandManagement.Api.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | f1632013b66a806148a7394526ebb2ee13cd7a9c 2 | -------------------------------------------------------------------------------- /DemandManagement.Api/obj/Debug/netcoreapp3.1/DemandManagement.Api.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/obj/Debug/netcoreapp3.1/DemandManagement.Api.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /DemandManagement.Api/obj/Debug/netcoreapp3.1/DemandManagement.Api.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/obj/Debug/netcoreapp3.1/DemandManagement.Api.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /DemandManagement.Api/obj/Debug/netcoreapp3.1/DemandManagement.Api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/obj/Debug/netcoreapp3.1/DemandManagement.Api.dll -------------------------------------------------------------------------------- /DemandManagement.Api/obj/Debug/netcoreapp3.1/DemandManagement.Api.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/obj/Debug/netcoreapp3.1/DemandManagement.Api.exe -------------------------------------------------------------------------------- /DemandManagement.Api/obj/Debug/netcoreapp3.1/DemandManagement.Api.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 7f9b9891a7db1b93f6e84d29be39c5ad3020519d 2 | -------------------------------------------------------------------------------- /DemandManagement.Api/obj/Debug/netcoreapp3.1/DemandManagement.Api.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/obj/Debug/netcoreapp3.1/DemandManagement.Api.pdb -------------------------------------------------------------------------------- /DemandManagement.Api/obj/Debug/netcoreapp3.1/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/obj/Debug/netcoreapp3.1/apphost.exe -------------------------------------------------------------------------------- /DemandManagement.Api/obj/Debug/netcoreapp3.1/staticwebassets/DemandManagement.Api.StaticWebAssets.Manifest.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DemandManagement.Api/obj/Debug/netcoreapp3.1/staticwebassets/DemandManagement.Api.StaticWebAssets.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DemandManagement.Api/obj/DemandManagement.Api.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/obj/DemandManagement.Api.csproj.nuget.cache -------------------------------------------------------------------------------- /DemandManagement.Api/obj/DemandManagement.Api.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/obj/DemandManagement.Api.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /DemandManagement.Api/obj/DemandManagement.Api.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/obj/DemandManagement.Api.csproj.nuget.g.props -------------------------------------------------------------------------------- /DemandManagement.Api/obj/DemandManagement.Api.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/obj/DemandManagement.Api.csproj.nuget.g.targets -------------------------------------------------------------------------------- /DemandManagement.Api/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/obj/project.assets.json -------------------------------------------------------------------------------- /DemandManagement.Api/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Api/obj/project.nuget.cache -------------------------------------------------------------------------------- /DemandManagement.MessageContracts/BusConfigurater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.MessageContracts/BusConfigurater.cs -------------------------------------------------------------------------------- /DemandManagement.MessageContracts/DemandManagement.MessageContracts.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.MessageContracts/DemandManagement.MessageContracts.csproj -------------------------------------------------------------------------------- /DemandManagement.MessageContracts/IRegisterDemandCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.MessageContracts/IRegisterDemandCommand.cs -------------------------------------------------------------------------------- /DemandManagement.MessageContracts/IRegisteredDemandEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.MessageContracts/IRegisteredDemandEvent.cs -------------------------------------------------------------------------------- /DemandManagement.MessageContracts/RabbitMqConsts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.MessageContracts/RabbitMqConsts.cs -------------------------------------------------------------------------------- /DemandManagement.MessageContracts/bin/Debug/netcoreapp3.1/DemandManagement.MessageContracts.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.MessageContracts/bin/Debug/netcoreapp3.1/DemandManagement.MessageContracts.deps.json -------------------------------------------------------------------------------- /DemandManagement.MessageContracts/bin/Debug/netcoreapp3.1/DemandManagement.MessageContracts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.MessageContracts/bin/Debug/netcoreapp3.1/DemandManagement.MessageContracts.dll -------------------------------------------------------------------------------- /DemandManagement.MessageContracts/bin/Debug/netcoreapp3.1/DemandManagement.MessageContracts.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.MessageContracts/bin/Debug/netcoreapp3.1/DemandManagement.MessageContracts.pdb -------------------------------------------------------------------------------- /DemandManagement.MessageContracts/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.MessageContracts/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs -------------------------------------------------------------------------------- /DemandManagement.MessageContracts/obj/Debug/netcoreapp3.1/DemandManagement.MessageContracts.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.MessageContracts/obj/Debug/netcoreapp3.1/DemandManagement.MessageContracts.AssemblyInfo.cs -------------------------------------------------------------------------------- /DemandManagement.MessageContracts/obj/Debug/netcoreapp3.1/DemandManagement.MessageContracts.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 8c5ecfc5aed52da1ca8f220acd1856b6013b00b7 2 | -------------------------------------------------------------------------------- /DemandManagement.MessageContracts/obj/Debug/netcoreapp3.1/DemandManagement.MessageContracts.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.MessageContracts/obj/Debug/netcoreapp3.1/DemandManagement.MessageContracts.assets.cache -------------------------------------------------------------------------------- /DemandManagement.MessageContracts/obj/Debug/netcoreapp3.1/DemandManagement.MessageContracts.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | abebeccb244168318dc91aa82e8cd643b063765b 2 | -------------------------------------------------------------------------------- /DemandManagement.MessageContracts/obj/Debug/netcoreapp3.1/DemandManagement.MessageContracts.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.MessageContracts/obj/Debug/netcoreapp3.1/DemandManagement.MessageContracts.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /DemandManagement.MessageContracts/obj/Debug/netcoreapp3.1/DemandManagement.MessageContracts.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.MessageContracts/obj/Debug/netcoreapp3.1/DemandManagement.MessageContracts.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /DemandManagement.MessageContracts/obj/Debug/netcoreapp3.1/DemandManagement.MessageContracts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.MessageContracts/obj/Debug/netcoreapp3.1/DemandManagement.MessageContracts.dll -------------------------------------------------------------------------------- /DemandManagement.MessageContracts/obj/Debug/netcoreapp3.1/DemandManagement.MessageContracts.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.MessageContracts/obj/Debug/netcoreapp3.1/DemandManagement.MessageContracts.pdb -------------------------------------------------------------------------------- /DemandManagement.MessageContracts/obj/DemandManagement.MessageContracts.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.MessageContracts/obj/DemandManagement.MessageContracts.csproj.nuget.cache -------------------------------------------------------------------------------- /DemandManagement.MessageContracts/obj/DemandManagement.MessageContracts.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.MessageContracts/obj/DemandManagement.MessageContracts.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /DemandManagement.MessageContracts/obj/DemandManagement.MessageContracts.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.MessageContracts/obj/DemandManagement.MessageContracts.csproj.nuget.g.props -------------------------------------------------------------------------------- /DemandManagement.MessageContracts/obj/DemandManagement.MessageContracts.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.MessageContracts/obj/DemandManagement.MessageContracts.csproj.nuget.g.targets -------------------------------------------------------------------------------- /DemandManagement.MessageContracts/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.MessageContracts/obj/project.assets.json -------------------------------------------------------------------------------- /DemandManagement.MessageContracts/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.MessageContracts/obj/project.nuget.cache -------------------------------------------------------------------------------- /DemandManagement.Notification/DemandManagement.Notification.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Notification/DemandManagement.Notification.csproj -------------------------------------------------------------------------------- /DemandManagement.Notification/DemandRegisteredEventConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Notification/DemandRegisteredEventConsumer.cs -------------------------------------------------------------------------------- /DemandManagement.Notification/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Notification/Program.cs -------------------------------------------------------------------------------- /DemandManagement.Notification/bin/Debug/netcoreapp3.1/Automatonymous.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Notification/bin/Debug/netcoreapp3.1/Automatonymous.dll -------------------------------------------------------------------------------- /DemandManagement.Notification/bin/Debug/netcoreapp3.1/DemandManagement.MessageContracts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Notification/bin/Debug/netcoreapp3.1/DemandManagement.MessageContracts.dll -------------------------------------------------------------------------------- /DemandManagement.Notification/bin/Debug/netcoreapp3.1/DemandManagement.MessageContracts.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Notification/bin/Debug/netcoreapp3.1/DemandManagement.MessageContracts.pdb -------------------------------------------------------------------------------- /DemandManagement.Notification/bin/Debug/netcoreapp3.1/DemandManagement.Notification.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Notification/bin/Debug/netcoreapp3.1/DemandManagement.Notification.deps.json -------------------------------------------------------------------------------- /DemandManagement.Notification/bin/Debug/netcoreapp3.1/DemandManagement.Notification.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Notification/bin/Debug/netcoreapp3.1/DemandManagement.Notification.dll -------------------------------------------------------------------------------- /DemandManagement.Notification/bin/Debug/netcoreapp3.1/DemandManagement.Notification.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Notification/bin/Debug/netcoreapp3.1/DemandManagement.Notification.exe -------------------------------------------------------------------------------- /DemandManagement.Notification/bin/Debug/netcoreapp3.1/DemandManagement.Notification.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Notification/bin/Debug/netcoreapp3.1/DemandManagement.Notification.pdb -------------------------------------------------------------------------------- /DemandManagement.Notification/bin/Debug/netcoreapp3.1/DemandManagement.Notification.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Notification/bin/Debug/netcoreapp3.1/DemandManagement.Notification.runtimeconfig.dev.json -------------------------------------------------------------------------------- /DemandManagement.Notification/bin/Debug/netcoreapp3.1/DemandManagement.Notification.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Notification/bin/Debug/netcoreapp3.1/DemandManagement.Notification.runtimeconfig.json -------------------------------------------------------------------------------- /DemandManagement.Notification/bin/Debug/netcoreapp3.1/GreenPipes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Notification/bin/Debug/netcoreapp3.1/GreenPipes.dll -------------------------------------------------------------------------------- /DemandManagement.Notification/bin/Debug/netcoreapp3.1/MassTransit.RabbitMqTransport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Notification/bin/Debug/netcoreapp3.1/MassTransit.RabbitMqTransport.dll -------------------------------------------------------------------------------- /DemandManagement.Notification/bin/Debug/netcoreapp3.1/MassTransit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Notification/bin/Debug/netcoreapp3.1/MassTransit.dll -------------------------------------------------------------------------------- /DemandManagement.Notification/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Notification/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll -------------------------------------------------------------------------------- /DemandManagement.Notification/bin/Debug/netcoreapp3.1/Microsoft.Extensions.PlatformAbstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Notification/bin/Debug/netcoreapp3.1/Microsoft.Extensions.PlatformAbstractions.dll -------------------------------------------------------------------------------- /DemandManagement.Notification/bin/Debug/netcoreapp3.1/NewId.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Notification/bin/Debug/netcoreapp3.1/NewId.dll -------------------------------------------------------------------------------- /DemandManagement.Notification/bin/Debug/netcoreapp3.1/Newtonsoft.Json.Bson.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Notification/bin/Debug/netcoreapp3.1/Newtonsoft.Json.Bson.dll -------------------------------------------------------------------------------- /DemandManagement.Notification/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Notification/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /DemandManagement.Notification/bin/Debug/netcoreapp3.1/RabbitMQ.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Notification/bin/Debug/netcoreapp3.1/RabbitMQ.Client.dll -------------------------------------------------------------------------------- /DemandManagement.Notification/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Notification/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs -------------------------------------------------------------------------------- /DemandManagement.Notification/obj/Debug/netcoreapp3.1/DemandManagement.Notification.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Notification/obj/Debug/netcoreapp3.1/DemandManagement.Notification.AssemblyInfo.cs -------------------------------------------------------------------------------- /DemandManagement.Notification/obj/Debug/netcoreapp3.1/DemandManagement.Notification.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 57fddd7cf596373cb467ad75e0d95c2c8f731aec 2 | -------------------------------------------------------------------------------- /DemandManagement.Notification/obj/Debug/netcoreapp3.1/DemandManagement.Notification.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Notification/obj/Debug/netcoreapp3.1/DemandManagement.Notification.assets.cache -------------------------------------------------------------------------------- /DemandManagement.Notification/obj/Debug/netcoreapp3.1/DemandManagement.Notification.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DemandManagement.Notification/obj/Debug/netcoreapp3.1/DemandManagement.Notification.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 5ef63cea08145f3ffa8db93a3c6fb2513982cf82 2 | -------------------------------------------------------------------------------- /DemandManagement.Notification/obj/Debug/netcoreapp3.1/DemandManagement.Notification.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Notification/obj/Debug/netcoreapp3.1/DemandManagement.Notification.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /DemandManagement.Notification/obj/Debug/netcoreapp3.1/DemandManagement.Notification.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Notification/obj/Debug/netcoreapp3.1/DemandManagement.Notification.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /DemandManagement.Notification/obj/Debug/netcoreapp3.1/DemandManagement.Notification.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Notification/obj/Debug/netcoreapp3.1/DemandManagement.Notification.dll -------------------------------------------------------------------------------- /DemandManagement.Notification/obj/Debug/netcoreapp3.1/DemandManagement.Notification.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Notification/obj/Debug/netcoreapp3.1/DemandManagement.Notification.exe -------------------------------------------------------------------------------- /DemandManagement.Notification/obj/Debug/netcoreapp3.1/DemandManagement.Notification.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 5cd7f817949fb4b1453657c28d7616ca7ceae115 2 | -------------------------------------------------------------------------------- /DemandManagement.Notification/obj/Debug/netcoreapp3.1/DemandManagement.Notification.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Notification/obj/Debug/netcoreapp3.1/DemandManagement.Notification.pdb -------------------------------------------------------------------------------- /DemandManagement.Notification/obj/Debug/netcoreapp3.1/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Notification/obj/Debug/netcoreapp3.1/apphost.exe -------------------------------------------------------------------------------- /DemandManagement.Notification/obj/DemandManagement.Notification.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Notification/obj/DemandManagement.Notification.csproj.nuget.cache -------------------------------------------------------------------------------- /DemandManagement.Notification/obj/DemandManagement.Notification.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Notification/obj/DemandManagement.Notification.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /DemandManagement.Notification/obj/DemandManagement.Notification.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Notification/obj/DemandManagement.Notification.csproj.nuget.g.props -------------------------------------------------------------------------------- /DemandManagement.Notification/obj/DemandManagement.Notification.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Notification/obj/DemandManagement.Notification.csproj.nuget.g.targets -------------------------------------------------------------------------------- /DemandManagement.Notification/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Notification/obj/project.assets.json -------------------------------------------------------------------------------- /DemandManagement.Notification/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Notification/obj/project.nuget.cache -------------------------------------------------------------------------------- /DemandManagement.Registration/DemandManagement.Registration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Registration/DemandManagement.Registration.csproj -------------------------------------------------------------------------------- /DemandManagement.Registration/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Registration/Program.cs -------------------------------------------------------------------------------- /DemandManagement.Registration/RegisterDemandCommandConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Registration/RegisterDemandCommandConsumer.cs -------------------------------------------------------------------------------- /DemandManagement.Registration/bin/Debug/netcoreapp3.1/Automatonymous.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Registration/bin/Debug/netcoreapp3.1/Automatonymous.dll -------------------------------------------------------------------------------- /DemandManagement.Registration/bin/Debug/netcoreapp3.1/DemandManagement.MessageContracts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Registration/bin/Debug/netcoreapp3.1/DemandManagement.MessageContracts.dll -------------------------------------------------------------------------------- /DemandManagement.Registration/bin/Debug/netcoreapp3.1/DemandManagement.MessageContracts.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Registration/bin/Debug/netcoreapp3.1/DemandManagement.MessageContracts.pdb -------------------------------------------------------------------------------- /DemandManagement.Registration/bin/Debug/netcoreapp3.1/DemandManagement.Registration.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Registration/bin/Debug/netcoreapp3.1/DemandManagement.Registration.deps.json -------------------------------------------------------------------------------- /DemandManagement.Registration/bin/Debug/netcoreapp3.1/DemandManagement.Registration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Registration/bin/Debug/netcoreapp3.1/DemandManagement.Registration.dll -------------------------------------------------------------------------------- /DemandManagement.Registration/bin/Debug/netcoreapp3.1/DemandManagement.Registration.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Registration/bin/Debug/netcoreapp3.1/DemandManagement.Registration.exe -------------------------------------------------------------------------------- /DemandManagement.Registration/bin/Debug/netcoreapp3.1/DemandManagement.Registration.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Registration/bin/Debug/netcoreapp3.1/DemandManagement.Registration.pdb -------------------------------------------------------------------------------- /DemandManagement.Registration/bin/Debug/netcoreapp3.1/DemandManagement.Registration.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Registration/bin/Debug/netcoreapp3.1/DemandManagement.Registration.runtimeconfig.dev.json -------------------------------------------------------------------------------- /DemandManagement.Registration/bin/Debug/netcoreapp3.1/DemandManagement.Registration.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Registration/bin/Debug/netcoreapp3.1/DemandManagement.Registration.runtimeconfig.json -------------------------------------------------------------------------------- /DemandManagement.Registration/bin/Debug/netcoreapp3.1/GreenPipes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Registration/bin/Debug/netcoreapp3.1/GreenPipes.dll -------------------------------------------------------------------------------- /DemandManagement.Registration/bin/Debug/netcoreapp3.1/MassTransit.RabbitMqTransport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Registration/bin/Debug/netcoreapp3.1/MassTransit.RabbitMqTransport.dll -------------------------------------------------------------------------------- /DemandManagement.Registration/bin/Debug/netcoreapp3.1/MassTransit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Registration/bin/Debug/netcoreapp3.1/MassTransit.dll -------------------------------------------------------------------------------- /DemandManagement.Registration/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Registration/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll -------------------------------------------------------------------------------- /DemandManagement.Registration/bin/Debug/netcoreapp3.1/Microsoft.Extensions.PlatformAbstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Registration/bin/Debug/netcoreapp3.1/Microsoft.Extensions.PlatformAbstractions.dll -------------------------------------------------------------------------------- /DemandManagement.Registration/bin/Debug/netcoreapp3.1/NewId.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Registration/bin/Debug/netcoreapp3.1/NewId.dll -------------------------------------------------------------------------------- /DemandManagement.Registration/bin/Debug/netcoreapp3.1/Newtonsoft.Json.Bson.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Registration/bin/Debug/netcoreapp3.1/Newtonsoft.Json.Bson.dll -------------------------------------------------------------------------------- /DemandManagement.Registration/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Registration/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /DemandManagement.Registration/bin/Debug/netcoreapp3.1/RabbitMQ.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Registration/bin/Debug/netcoreapp3.1/RabbitMQ.Client.dll -------------------------------------------------------------------------------- /DemandManagement.Registration/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Registration/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs -------------------------------------------------------------------------------- /DemandManagement.Registration/obj/Debug/netcoreapp3.1/DemandManagement.Registration.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Registration/obj/Debug/netcoreapp3.1/DemandManagement.Registration.AssemblyInfo.cs -------------------------------------------------------------------------------- /DemandManagement.Registration/obj/Debug/netcoreapp3.1/DemandManagement.Registration.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | a40a570baf85c586e67a7be1bc579f24587867c4 2 | -------------------------------------------------------------------------------- /DemandManagement.Registration/obj/Debug/netcoreapp3.1/DemandManagement.Registration.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Registration/obj/Debug/netcoreapp3.1/DemandManagement.Registration.assets.cache -------------------------------------------------------------------------------- /DemandManagement.Registration/obj/Debug/netcoreapp3.1/DemandManagement.Registration.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DemandManagement.Registration/obj/Debug/netcoreapp3.1/DemandManagement.Registration.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 28a46c4317dc24c21b985d4f5a6d33f6adbd5a24 2 | -------------------------------------------------------------------------------- /DemandManagement.Registration/obj/Debug/netcoreapp3.1/DemandManagement.Registration.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Registration/obj/Debug/netcoreapp3.1/DemandManagement.Registration.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /DemandManagement.Registration/obj/Debug/netcoreapp3.1/DemandManagement.Registration.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Registration/obj/Debug/netcoreapp3.1/DemandManagement.Registration.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /DemandManagement.Registration/obj/Debug/netcoreapp3.1/DemandManagement.Registration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Registration/obj/Debug/netcoreapp3.1/DemandManagement.Registration.dll -------------------------------------------------------------------------------- /DemandManagement.Registration/obj/Debug/netcoreapp3.1/DemandManagement.Registration.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Registration/obj/Debug/netcoreapp3.1/DemandManagement.Registration.exe -------------------------------------------------------------------------------- /DemandManagement.Registration/obj/Debug/netcoreapp3.1/DemandManagement.Registration.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | bc68917c59a4db6bc611b3559ca6cf8e84d395c9 2 | -------------------------------------------------------------------------------- /DemandManagement.Registration/obj/Debug/netcoreapp3.1/DemandManagement.Registration.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Registration/obj/Debug/netcoreapp3.1/DemandManagement.Registration.pdb -------------------------------------------------------------------------------- /DemandManagement.Registration/obj/Debug/netcoreapp3.1/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Registration/obj/Debug/netcoreapp3.1/apphost.exe -------------------------------------------------------------------------------- /DemandManagement.Registration/obj/DemandManagement.Registration.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Registration/obj/DemandManagement.Registration.csproj.nuget.cache -------------------------------------------------------------------------------- /DemandManagement.Registration/obj/DemandManagement.Registration.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Registration/obj/DemandManagement.Registration.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /DemandManagement.Registration/obj/DemandManagement.Registration.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Registration/obj/DemandManagement.Registration.csproj.nuget.g.props -------------------------------------------------------------------------------- /DemandManagement.Registration/obj/DemandManagement.Registration.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Registration/obj/DemandManagement.Registration.csproj.nuget.g.targets -------------------------------------------------------------------------------- /DemandManagement.Registration/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Registration/obj/project.assets.json -------------------------------------------------------------------------------- /DemandManagement.Registration/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Registration/obj/project.nuget.cache -------------------------------------------------------------------------------- /DemandManagement.Thirdparty.Service/DemandManagement.Thirdparty.Service.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Thirdparty.Service/DemandManagement.Thirdparty.Service.csproj -------------------------------------------------------------------------------- /DemandManagement.Thirdparty.Service/DemandRegisteredEventConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Thirdparty.Service/DemandRegisteredEventConsumer.cs -------------------------------------------------------------------------------- /DemandManagement.Thirdparty.Service/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Thirdparty.Service/Program.cs -------------------------------------------------------------------------------- /DemandManagement.Thirdparty.Service/bin/Debug/netcoreapp3.1/Automatonymous.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Thirdparty.Service/bin/Debug/netcoreapp3.1/Automatonymous.dll -------------------------------------------------------------------------------- /DemandManagement.Thirdparty.Service/bin/Debug/netcoreapp3.1/DemandManagement.MessageContracts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Thirdparty.Service/bin/Debug/netcoreapp3.1/DemandManagement.MessageContracts.dll -------------------------------------------------------------------------------- /DemandManagement.Thirdparty.Service/bin/Debug/netcoreapp3.1/DemandManagement.MessageContracts.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Thirdparty.Service/bin/Debug/netcoreapp3.1/DemandManagement.MessageContracts.pdb -------------------------------------------------------------------------------- /DemandManagement.Thirdparty.Service/bin/Debug/netcoreapp3.1/DemandManagement.Thirdparty.Service.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Thirdparty.Service/bin/Debug/netcoreapp3.1/DemandManagement.Thirdparty.Service.deps.json -------------------------------------------------------------------------------- /DemandManagement.Thirdparty.Service/bin/Debug/netcoreapp3.1/DemandManagement.Thirdparty.Service.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Thirdparty.Service/bin/Debug/netcoreapp3.1/DemandManagement.Thirdparty.Service.dll -------------------------------------------------------------------------------- /DemandManagement.Thirdparty.Service/bin/Debug/netcoreapp3.1/DemandManagement.Thirdparty.Service.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Thirdparty.Service/bin/Debug/netcoreapp3.1/DemandManagement.Thirdparty.Service.exe -------------------------------------------------------------------------------- /DemandManagement.Thirdparty.Service/bin/Debug/netcoreapp3.1/DemandManagement.Thirdparty.Service.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Thirdparty.Service/bin/Debug/netcoreapp3.1/DemandManagement.Thirdparty.Service.pdb -------------------------------------------------------------------------------- /DemandManagement.Thirdparty.Service/bin/Debug/netcoreapp3.1/DemandManagement.Thirdparty.Service.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Thirdparty.Service/bin/Debug/netcoreapp3.1/DemandManagement.Thirdparty.Service.runtimeconfig.dev.json -------------------------------------------------------------------------------- /DemandManagement.Thirdparty.Service/bin/Debug/netcoreapp3.1/DemandManagement.Thirdparty.Service.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Thirdparty.Service/bin/Debug/netcoreapp3.1/DemandManagement.Thirdparty.Service.runtimeconfig.json -------------------------------------------------------------------------------- /DemandManagement.Thirdparty.Service/bin/Debug/netcoreapp3.1/GreenPipes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Thirdparty.Service/bin/Debug/netcoreapp3.1/GreenPipes.dll -------------------------------------------------------------------------------- /DemandManagement.Thirdparty.Service/bin/Debug/netcoreapp3.1/MassTransit.RabbitMqTransport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Thirdparty.Service/bin/Debug/netcoreapp3.1/MassTransit.RabbitMqTransport.dll -------------------------------------------------------------------------------- /DemandManagement.Thirdparty.Service/bin/Debug/netcoreapp3.1/MassTransit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Thirdparty.Service/bin/Debug/netcoreapp3.1/MassTransit.dll -------------------------------------------------------------------------------- /DemandManagement.Thirdparty.Service/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Thirdparty.Service/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll -------------------------------------------------------------------------------- /DemandManagement.Thirdparty.Service/bin/Debug/netcoreapp3.1/Microsoft.Extensions.PlatformAbstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Thirdparty.Service/bin/Debug/netcoreapp3.1/Microsoft.Extensions.PlatformAbstractions.dll -------------------------------------------------------------------------------- /DemandManagement.Thirdparty.Service/bin/Debug/netcoreapp3.1/NewId.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Thirdparty.Service/bin/Debug/netcoreapp3.1/NewId.dll -------------------------------------------------------------------------------- /DemandManagement.Thirdparty.Service/bin/Debug/netcoreapp3.1/Newtonsoft.Json.Bson.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Thirdparty.Service/bin/Debug/netcoreapp3.1/Newtonsoft.Json.Bson.dll -------------------------------------------------------------------------------- /DemandManagement.Thirdparty.Service/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Thirdparty.Service/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /DemandManagement.Thirdparty.Service/bin/Debug/netcoreapp3.1/RabbitMQ.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Thirdparty.Service/bin/Debug/netcoreapp3.1/RabbitMQ.Client.dll -------------------------------------------------------------------------------- /DemandManagement.Thirdparty.Service/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Thirdparty.Service/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs -------------------------------------------------------------------------------- /DemandManagement.Thirdparty.Service/obj/Debug/netcoreapp3.1/DemandManagement.Thirdparty.Service.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Thirdparty.Service/obj/Debug/netcoreapp3.1/DemandManagement.Thirdparty.Service.AssemblyInfo.cs -------------------------------------------------------------------------------- /DemandManagement.Thirdparty.Service/obj/Debug/netcoreapp3.1/DemandManagement.Thirdparty.Service.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | d213874da12b98829141cf8b33da5ec31c5429ab 2 | -------------------------------------------------------------------------------- /DemandManagement.Thirdparty.Service/obj/Debug/netcoreapp3.1/DemandManagement.Thirdparty.Service.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Thirdparty.Service/obj/Debug/netcoreapp3.1/DemandManagement.Thirdparty.Service.assets.cache -------------------------------------------------------------------------------- /DemandManagement.Thirdparty.Service/obj/Debug/netcoreapp3.1/DemandManagement.Thirdparty.Service.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DemandManagement.Thirdparty.Service/obj/Debug/netcoreapp3.1/DemandManagement.Thirdparty.Service.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | dde04485da18bb3c6ade2b105cbd9f0b9fbcc7c9 2 | -------------------------------------------------------------------------------- /DemandManagement.Thirdparty.Service/obj/Debug/netcoreapp3.1/DemandManagement.Thirdparty.Service.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Thirdparty.Service/obj/Debug/netcoreapp3.1/DemandManagement.Thirdparty.Service.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /DemandManagement.Thirdparty.Service/obj/Debug/netcoreapp3.1/DemandManagement.Thirdparty.Service.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Thirdparty.Service/obj/Debug/netcoreapp3.1/DemandManagement.Thirdparty.Service.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /DemandManagement.Thirdparty.Service/obj/Debug/netcoreapp3.1/DemandManagement.Thirdparty.Service.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Thirdparty.Service/obj/Debug/netcoreapp3.1/DemandManagement.Thirdparty.Service.dll -------------------------------------------------------------------------------- /DemandManagement.Thirdparty.Service/obj/Debug/netcoreapp3.1/DemandManagement.Thirdparty.Service.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Thirdparty.Service/obj/Debug/netcoreapp3.1/DemandManagement.Thirdparty.Service.exe -------------------------------------------------------------------------------- /DemandManagement.Thirdparty.Service/obj/Debug/netcoreapp3.1/DemandManagement.Thirdparty.Service.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | c1ebc3286653ef4ca1487a8f0d0a2d27477b21a0 2 | -------------------------------------------------------------------------------- /DemandManagement.Thirdparty.Service/obj/Debug/netcoreapp3.1/DemandManagement.Thirdparty.Service.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Thirdparty.Service/obj/Debug/netcoreapp3.1/DemandManagement.Thirdparty.Service.pdb -------------------------------------------------------------------------------- /DemandManagement.Thirdparty.Service/obj/Debug/netcoreapp3.1/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Thirdparty.Service/obj/Debug/netcoreapp3.1/apphost.exe -------------------------------------------------------------------------------- /DemandManagement.Thirdparty.Service/obj/DemandManagement.Thirdparty.Service.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Thirdparty.Service/obj/DemandManagement.Thirdparty.Service.csproj.nuget.cache -------------------------------------------------------------------------------- /DemandManagement.Thirdparty.Service/obj/DemandManagement.Thirdparty.Service.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Thirdparty.Service/obj/DemandManagement.Thirdparty.Service.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /DemandManagement.Thirdparty.Service/obj/DemandManagement.Thirdparty.Service.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Thirdparty.Service/obj/DemandManagement.Thirdparty.Service.csproj.nuget.g.props -------------------------------------------------------------------------------- /DemandManagement.Thirdparty.Service/obj/DemandManagement.Thirdparty.Service.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Thirdparty.Service/obj/DemandManagement.Thirdparty.Service.csproj.nuget.g.targets -------------------------------------------------------------------------------- /DemandManagement.Thirdparty.Service/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Thirdparty.Service/obj/project.assets.json -------------------------------------------------------------------------------- /DemandManagement.Thirdparty.Service/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.Thirdparty.Service/obj/project.nuget.cache -------------------------------------------------------------------------------- /DemandManagement.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/DemandManagement/HEAD/DemandManagement.sln --------------------------------------------------------------------------------