├── .github └── workflows │ └── build.yml ├── README.md ├── Tests ├── Contracts │ ├── NotificationContract.Tests │ │ ├── Models │ │ │ ├── SendNotificationRequest.EmailRequestExplicitOprator.Tests.cs │ │ │ ├── SendNotificationRequest.PushMessageRequestExplicitOprator.Tests.cs │ │ │ └── SendNotificationRequest.SmsRequestExplicitOprator.Tests.cs │ │ ├── NotificationContract.Tests.csproj │ │ ├── TestData │ │ │ └── TestDataGenerator.cs │ │ ├── Usings.cs │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── net7.0 │ │ │ │ ├── BouncyCastle.Cryptography.dll │ │ │ │ ├── CoverletSourceRootsMapping │ │ │ │ ├── EmailContract.dll │ │ │ │ ├── EmailContract.pdb │ │ │ │ ├── FirebaseAdmin.dll │ │ │ │ ├── Google.Api.Gax.Rest.dll │ │ │ │ ├── Google.Api.Gax.dll │ │ │ │ ├── Google.Apis.Auth.PlatformServices.dll │ │ │ │ ├── Google.Apis.Auth.dll │ │ │ │ ├── Google.Apis.Core.dll │ │ │ │ ├── Google.Apis.dll │ │ │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.dll │ │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.dll │ │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.dll │ │ │ │ ├── Microsoft.TestPlatform.PlatformAbstractions.dll │ │ │ │ ├── Microsoft.TestPlatform.Utilities.dll │ │ │ │ ├── Microsoft.VisualStudio.CodeCoverage.Shim.dll │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.dll │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.ObjectModel.dll │ │ │ │ ├── MimeKit.dll │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ ├── NotificationContract.Tests.deps.json │ │ │ │ ├── NotificationContract.Tests.dll │ │ │ │ ├── NotificationContract.Tests.pdb │ │ │ │ ├── NotificationContract.Tests.runtimeconfig.json │ │ │ │ ├── NotificationContract.dll │ │ │ │ ├── NotificationContract.pdb │ │ │ │ ├── NuGet.Frameworks.dll │ │ │ │ ├── PushNotificationContract.dll │ │ │ │ ├── PushNotificationContract.pdb │ │ │ │ ├── SmsContract.dll │ │ │ │ ├── SmsContract.pdb │ │ │ │ ├── System.Security.Cryptography.Pkcs.dll │ │ │ │ ├── cs │ │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ │ ├── de │ │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ │ ├── es │ │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ │ ├── fr │ │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ │ ├── it │ │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ │ ├── ja │ │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ │ ├── ko │ │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ │ ├── pl │ │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ │ ├── pt-BR │ │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ │ ├── ru │ │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ │ ├── runtimes │ │ │ │ └── win │ │ │ │ │ └── lib │ │ │ │ │ └── net7.0 │ │ │ │ │ └── System.Security.Cryptography.Pkcs.dll │ │ │ │ ├── testhost.dll │ │ │ │ ├── tr │ │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ │ ├── xunit.abstractions.dll │ │ │ │ ├── xunit.assert.dll │ │ │ │ ├── xunit.core.dll │ │ │ │ ├── xunit.execution.dotnet.dll │ │ │ │ ├── xunit.runner.reporters.netcoreapp10.dll │ │ │ │ ├── xunit.runner.utility.netcoreapp10.dll │ │ │ │ ├── xunit.runner.visualstudio.dotnetcore.testadapter.dll │ │ │ │ ├── zh-Hans │ │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ │ └── zh-Hant │ │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ └── obj │ │ │ ├── Debug │ │ │ └── net7.0 │ │ │ │ ├── .NETCoreApp,Version=v7.0.AssemblyAttributes.cs │ │ │ │ ├── NotificationContract.Tests.AssemblyInfo.cs │ │ │ │ ├── NotificationContract.Tests.AssemblyInfoInputs.cache │ │ │ │ ├── NotificationContract.Tests.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── NotificationContract.Tests.GlobalUsings.g.cs │ │ │ │ ├── NotificationContract.Tests.assets.cache │ │ │ │ ├── NotificationContract.Tests.csproj.AssemblyReference.cache │ │ │ │ ├── NotificationContract.Tests.csproj.CopyComplete │ │ │ │ ├── NotificationContract.Tests.csproj.CoreCompileInputs.cache │ │ │ │ ├── NotificationContract.Tests.csproj.FileListAbsolute.txt │ │ │ │ ├── NotificationContract.Tests.dll │ │ │ │ ├── NotificationContract.Tests.genruntimeconfig.cache │ │ │ │ ├── NotificationContract.Tests.pdb │ │ │ │ ├── ref │ │ │ │ └── NotificationContract.Tests.dll │ │ │ │ └── refint │ │ │ │ └── NotificationContract.Tests.dll │ │ │ ├── NotificationContract.Tests.csproj.nuget.dgspec.json │ │ │ ├── NotificationContract.Tests.csproj.nuget.g.props │ │ │ ├── NotificationContract.Tests.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ ├── project.nuget.cache │ │ │ ├── project.packagespec.json │ │ │ └── rider.project.restore.info │ └── PushNotificationContract.Tests │ │ ├── Models │ │ └── SendPushMessage.MessageExplicitOprator.Tests.cs │ │ ├── PushNotificationContract.Tests.csproj │ │ ├── TestData │ │ └── TestDataGenerator.cs │ │ ├── Usings.cs │ │ ├── bin │ │ └── Debug │ │ │ └── net7.0 │ │ │ ├── CoverletSourceRootsMapping │ │ │ ├── FirebaseAdmin.dll │ │ │ ├── Google.Api.Gax.Rest.dll │ │ │ ├── Google.Api.Gax.dll │ │ │ ├── Google.Apis.Auth.PlatformServices.dll │ │ │ ├── Google.Apis.Auth.dll │ │ │ ├── Google.Apis.Core.dll │ │ │ ├── Google.Apis.dll │ │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.dll │ │ │ ├── Microsoft.TestPlatform.PlatformAbstractions.dll │ │ │ ├── Microsoft.TestPlatform.Utilities.dll │ │ │ ├── Microsoft.VisualStudio.CodeCoverage.Shim.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.ObjectModel.dll │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── NuGet.Frameworks.dll │ │ │ ├── PushNotificationContract.Tests.deps.json │ │ │ ├── PushNotificationContract.Tests.dll │ │ │ ├── PushNotificationContract.Tests.pdb │ │ │ ├── PushNotificationContract.Tests.runtimeconfig.json │ │ │ ├── PushNotificationContract.dll │ │ │ ├── PushNotificationContract.pdb │ │ │ ├── cs │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── de │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── es │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── fr │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── it │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── ja │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── ko │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── pl │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── pt-BR │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── ru │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── testhost.dll │ │ │ ├── tr │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── xunit.abstractions.dll │ │ │ ├── xunit.assert.dll │ │ │ ├── xunit.core.dll │ │ │ ├── xunit.execution.dotnet.dll │ │ │ ├── xunit.runner.reporters.netcoreapp10.dll │ │ │ ├── xunit.runner.utility.netcoreapp10.dll │ │ │ ├── xunit.runner.visualstudio.dotnetcore.testadapter.dll │ │ │ ├── zh-Hans │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ └── zh-Hant │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ └── obj │ │ ├── Debug │ │ └── net7.0 │ │ │ ├── .NETCoreApp,Version=v7.0.AssemblyAttributes.cs │ │ │ ├── PushNotificationContract.Tests.AssemblyInfo.cs │ │ │ ├── PushNotificationContract.Tests.AssemblyInfoInputs.cache │ │ │ ├── PushNotificationContract.Tests.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── PushNotificationContract.Tests.GlobalUsings.g.cs │ │ │ ├── PushNotificationContract.Tests.assets.cache │ │ │ ├── PushNotificationContract.Tests.csproj.AssemblyReference.cache │ │ │ ├── PushNotificationContract.Tests.csproj.CopyComplete │ │ │ ├── PushNotificationContract.Tests.csproj.CoreCompileInputs.cache │ │ │ ├── PushNotificationContract.Tests.csproj.FileListAbsolute.txt │ │ │ ├── PushNotificationContract.Tests.dll │ │ │ ├── PushNotificationContract.Tests.genruntimeconfig.cache │ │ │ ├── PushNotificationContract.Tests.pdb │ │ │ ├── ref │ │ │ └── PushNotificationContract.Tests.dll │ │ │ └── refint │ │ │ └── PushNotificationContract.Tests.dll │ │ ├── PushNotificationContract.Tests.csproj.nuget.dgspec.json │ │ ├── PushNotificationContract.Tests.csproj.nuget.g.props │ │ ├── PushNotificationContract.Tests.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ ├── project.nuget.cache │ │ ├── project.packagespec.json │ │ └── rider.project.restore.info └── Services │ ├── EmailService.Tests │ ├── ApplicationCore │ │ └── Services │ │ │ └── EmailService.Tests.cs │ ├── EmailService.Tests.csproj │ ├── TestData │ │ ├── DataAttributes │ │ │ ├── EmailRequestWithNullBodyData.cs │ │ │ └── EmailWithNullReceptorData.cs │ │ └── TestDataGenerator.cs │ ├── Usings.cs │ ├── appsettings.Development.test.json │ ├── appsettings.test.json │ ├── bin │ │ └── Debug │ │ │ └── net7.0 │ │ │ ├── BouncyCastle.Cryptography.dll │ │ │ ├── Castle.Core.dll │ │ │ ├── CoverletSourceRootsMapping │ │ │ ├── Elasticsearch.Net.dll │ │ │ ├── EmailContract.dll │ │ │ ├── EmailContract.pdb │ │ │ ├── EmailService │ │ │ ├── EmailService.Tests.deps.json │ │ │ ├── EmailService.Tests.dll │ │ │ ├── EmailService.Tests.pdb │ │ │ ├── EmailService.Tests.runtimeconfig.json │ │ │ ├── EmailService.deps.json │ │ │ ├── EmailService.dll │ │ │ ├── EmailService.pdb │ │ │ ├── EmailService.runtimeconfig.json │ │ │ ├── MailKit.dll │ │ │ ├── MassTransit.Abstractions.dll │ │ │ ├── MassTransit.AspNetCoreIntegration.dll │ │ │ ├── MassTransit.ExtensionsDependencyInjectionIntegration.dll │ │ │ ├── MassTransit.RabbitMqTransport.dll │ │ │ ├── MassTransit.dll │ │ │ ├── Microsoft.AspNetCore.OpenApi.dll │ │ │ ├── Microsoft.Extensions.DependencyModel.dll │ │ │ ├── Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Diagnostics.HealthChecks.dll │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Options.dll │ │ │ ├── Microsoft.OpenApi.dll │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.dll │ │ │ ├── Microsoft.TestPlatform.PlatformAbstractions.dll │ │ │ ├── Microsoft.TestPlatform.Utilities.dll │ │ │ ├── Microsoft.VisualStudio.CodeCoverage.Shim.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.ObjectModel.dll │ │ │ ├── MimeKit.dll │ │ │ ├── Moq.dll │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── NuGet.Frameworks.dll │ │ │ ├── RabbitMQ.Client.dll │ │ │ ├── Serilog.AspNetCore.dll │ │ │ ├── Serilog.Enrichers.Environment.dll │ │ │ ├── Serilog.Extensions.Hosting.dll │ │ │ ├── Serilog.Extensions.Logging.dll │ │ │ ├── Serilog.Formatting.Compact.dll │ │ │ ├── Serilog.Formatting.Elasticsearch.dll │ │ │ ├── Serilog.Settings.Configuration.dll │ │ │ ├── Serilog.Sinks.Console.dll │ │ │ ├── Serilog.Sinks.Debug.dll │ │ │ ├── Serilog.Sinks.Elasticsearch.dll │ │ │ ├── Serilog.Sinks.File.dll │ │ │ ├── Serilog.Sinks.PeriodicBatching.dll │ │ │ ├── Serilog.dll │ │ │ ├── Swashbuckle.AspNetCore.Swagger.dll │ │ │ ├── Swashbuckle.AspNetCore.SwaggerGen.dll │ │ │ ├── Swashbuckle.AspNetCore.SwaggerUI.dll │ │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ │ ├── System.Security.Cryptography.Pkcs.dll │ │ │ ├── System.Text.Json.dll │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.development.test.json │ │ │ ├── appsettings.json │ │ │ ├── appsettings.test.json │ │ │ ├── cs │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── de │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── es │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── fr │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── it │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── ja │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── ko │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── pl │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── pt-BR │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── ru │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── runtimes │ │ │ └── win │ │ │ │ └── lib │ │ │ │ └── net7.0 │ │ │ │ └── System.Security.Cryptography.Pkcs.dll │ │ │ ├── testhost.dll │ │ │ ├── tr │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── xunit.abstractions.dll │ │ │ ├── xunit.assert.dll │ │ │ ├── xunit.core.dll │ │ │ ├── xunit.execution.dotnet.dll │ │ │ ├── xunit.runner.reporters.netcoreapp10.dll │ │ │ ├── xunit.runner.utility.netcoreapp10.dll │ │ │ ├── xunit.runner.visualstudio.dotnetcore.testadapter.dll │ │ │ ├── zh-Hans │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ └── zh-Hant │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ └── obj │ │ ├── Debug │ │ └── net7.0 │ │ │ ├── .NETCoreApp,Version=v7.0.AssemblyAttributes.cs │ │ │ ├── EmailService.Tests.AssemblyInfo.cs │ │ │ ├── EmailService.Tests.AssemblyInfoInputs.cache │ │ │ ├── EmailService.Tests.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── EmailService.Tests.GlobalUsings.g.cs │ │ │ ├── EmailService.Tests.assets.cache │ │ │ ├── EmailService.Tests.csproj.AssemblyReference.cache │ │ │ ├── EmailService.Tests.csproj.CopyComplete │ │ │ ├── EmailService.Tests.csproj.CoreCompileInputs.cache │ │ │ ├── EmailService.Tests.csproj.FileListAbsolute.txt │ │ │ ├── EmailService.Tests.dll │ │ │ ├── EmailService.Tests.genruntimeconfig.cache │ │ │ ├── EmailService.Tests.pdb │ │ │ ├── ref │ │ │ └── EmailService.Tests.dll │ │ │ └── refint │ │ │ └── EmailService.Tests.dll │ │ ├── EmailService.Tests.csproj.nuget.dgspec.json │ │ ├── EmailService.Tests.csproj.nuget.g.props │ │ ├── EmailService.Tests.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ ├── project.nuget.cache │ │ ├── project.packagespec.json │ │ └── rider.project.restore.info │ ├── PushNotification.Tests │ ├── PushNotification.Tests.csproj │ ├── Usings.cs │ ├── bin │ │ └── Debug │ │ │ └── net7.0 │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.dll │ │ │ ├── Microsoft.TestPlatform.PlatformAbstractions.dll │ │ │ ├── Microsoft.TestPlatform.Utilities.dll │ │ │ ├── Microsoft.VisualStudio.CodeCoverage.Shim.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.ObjectModel.dll │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── NuGet.Frameworks.dll │ │ │ ├── PushNotification.Tests.deps.json │ │ │ ├── PushNotification.Tests.dll │ │ │ ├── PushNotification.Tests.pdb │ │ │ ├── PushNotification.Tests.runtimeconfig.json │ │ │ ├── cs │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── de │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── es │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── fr │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── it │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── ja │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── ko │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── pl │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── pt-BR │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── ru │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── testhost.dll │ │ │ ├── tr │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── xunit.abstractions.dll │ │ │ ├── xunit.assert.dll │ │ │ ├── xunit.core.dll │ │ │ ├── xunit.execution.dotnet.dll │ │ │ ├── xunit.runner.reporters.netcoreapp10.dll │ │ │ ├── xunit.runner.utility.netcoreapp10.dll │ │ │ ├── xunit.runner.visualstudio.dotnetcore.testadapter.dll │ │ │ ├── zh-Hans │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ └── zh-Hant │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ └── obj │ │ ├── Debug │ │ └── net7.0 │ │ │ ├── .NETCoreApp,Version=v7.0.AssemblyAttributes.cs │ │ │ ├── PushNotification.Tests.AssemblyInfo.cs │ │ │ ├── PushNotification.Tests.AssemblyInfoInputs.cache │ │ │ ├── PushNotification.Tests.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── PushNotification.Tests.GlobalUsings.g.cs │ │ │ ├── PushNotification.Tests.assets.cache │ │ │ ├── PushNotification.Tests.csproj.AssemblyReference.cache │ │ │ ├── PushNotification.Tests.csproj.CopyComplete │ │ │ ├── PushNotification.Tests.csproj.CoreCompileInputs.cache │ │ │ ├── PushNotification.Tests.csproj.FileListAbsolute.txt │ │ │ ├── PushNotification.Tests.dll │ │ │ ├── PushNotification.Tests.genruntimeconfig.cache │ │ │ ├── PushNotification.Tests.pdb │ │ │ ├── ref │ │ │ └── PushNotification.Tests.dll │ │ │ └── refint │ │ │ └── PushNotification.Tests.dll │ │ ├── PushNotification.Tests.csproj.nuget.dgspec.json │ │ ├── PushNotification.Tests.csproj.nuget.g.props │ │ ├── PushNotification.Tests.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ ├── project.nuget.cache │ │ ├── project.packagespec.json │ │ └── rider.project.restore.info │ └── SmsService.Tests │ ├── ApplicationCore │ └── Services │ │ ├── KavenegarProvider.Tests.cs │ │ └── SmsService.Tests.cs │ ├── SmsService.Tests.csproj │ ├── TestData │ ├── DataAttributes │ │ ├── SmsRequestWithNullMessageData.cs │ │ └── SmsRequestWithNullReceptorData.cs │ └── TestDataGenerator.cs │ ├── Usings.cs │ ├── appsettings.Development.test.json │ ├── appsettings.test.json │ ├── bin │ └── Debug │ │ └── net7.0 │ │ ├── Castle.Core.dll │ │ ├── CoverletSourceRootsMapping │ │ ├── Elasticsearch.Net.dll │ │ ├── Kavenegar.Core.dll │ │ ├── MassTransit.Abstractions.dll │ │ ├── MassTransit.AspNetCoreIntegration.dll │ │ ├── MassTransit.ExtensionsDependencyInjectionIntegration.dll │ │ ├── MassTransit.RabbitMqTransport.dll │ │ ├── MassTransit.dll │ │ ├── Microsoft.AspNetCore.OpenApi.dll │ │ ├── Microsoft.Extensions.DependencyModel.dll │ │ ├── Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll │ │ ├── Microsoft.Extensions.Diagnostics.HealthChecks.dll │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ ├── Microsoft.Extensions.Options.dll │ │ ├── Microsoft.OpenApi.dll │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.dll │ │ ├── Microsoft.TestPlatform.PlatformAbstractions.dll │ │ ├── Microsoft.TestPlatform.Utilities.dll │ │ ├── Microsoft.VisualStudio.CodeCoverage.Shim.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.ObjectModel.dll │ │ ├── Moq.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── NuGet.Frameworks.dll │ │ ├── RabbitMQ.Client.dll │ │ ├── Serilog.AspNetCore.dll │ │ ├── Serilog.Enrichers.Environment.dll │ │ ├── Serilog.Extensions.Hosting.dll │ │ ├── Serilog.Extensions.Logging.dll │ │ ├── Serilog.Formatting.Compact.dll │ │ ├── Serilog.Formatting.Elasticsearch.dll │ │ ├── Serilog.Settings.Configuration.dll │ │ ├── Serilog.Sinks.Console.dll │ │ ├── Serilog.Sinks.Debug.dll │ │ ├── Serilog.Sinks.Elasticsearch.dll │ │ ├── Serilog.Sinks.File.dll │ │ ├── Serilog.Sinks.PeriodicBatching.dll │ │ ├── Serilog.dll │ │ ├── SmsContract.dll │ │ ├── SmsContract.pdb │ │ ├── SmsService │ │ ├── SmsService.Tests.deps.json │ │ ├── SmsService.Tests.dll │ │ ├── SmsService.Tests.pdb │ │ ├── SmsService.Tests.runtimeconfig.json │ │ ├── SmsService.deps.json │ │ ├── SmsService.dll │ │ ├── SmsService.pdb │ │ ├── SmsService.runtimeconfig.json │ │ ├── SmsServiceTests.deps.json │ │ ├── SmsServiceTests.runtimeconfig.json │ │ ├── Swashbuckle.AspNetCore.Swagger.dll │ │ ├── Swashbuckle.AspNetCore.SwaggerGen.dll │ │ ├── Swashbuckle.AspNetCore.SwaggerUI.dll │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ ├── System.Text.Json.dll │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── cs │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── de │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── es │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── fr │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── it │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── ja │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── ko │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── pl │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── pt-BR │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── ru │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── testhost.dll │ │ ├── tr │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── xunit.abstractions.dll │ │ ├── xunit.assert.dll │ │ ├── xunit.core.dll │ │ ├── xunit.execution.dotnet.dll │ │ ├── xunit.runner.reporters.netcoreapp10.dll │ │ ├── xunit.runner.utility.netcoreapp10.dll │ │ ├── xunit.runner.visualstudio.dotnetcore.testadapter.dll │ │ ├── zh-Hans │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ └── zh-Hant │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ └── obj │ ├── Debug │ └── net7.0 │ │ ├── .NETCoreApp,Version=v7.0.AssemblyAttributes.cs │ │ ├── SmsService.Tests.AssemblyInfo.cs │ │ ├── SmsService.Tests.AssemblyInfoInputs.cache │ │ ├── SmsService.Tests.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── SmsService.Tests.GlobalUsings.g.cs │ │ ├── SmsService.Tests.assets.cache │ │ ├── SmsService.Tests.csproj.AssemblyReference.cache │ │ ├── SmsService.Tests.csproj.CopyComplete │ │ ├── SmsService.Tests.csproj.CoreCompileInputs.cache │ │ ├── SmsService.Tests.csproj.FileListAbsolute.txt │ │ ├── SmsService.Tests.dll │ │ ├── SmsService.Tests.genruntimeconfig.cache │ │ ├── SmsService.Tests.pdb │ │ ├── SmsServiceTests.AssemblyInfo.cs │ │ ├── SmsServiceTests.AssemblyInfoInputs.cache │ │ ├── SmsServiceTests.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── SmsServiceTests.GlobalUsings.g.cs │ │ ├── SmsServiceTests.assets.cache │ │ ├── SmsServiceTests.csproj.AssemblyReference.cache │ │ ├── SmsServiceTests.csproj.CopyComplete │ │ ├── SmsServiceTests.csproj.CoreCompileInputs.cache │ │ ├── SmsServiceTests.csproj.FileListAbsolute.txt │ │ ├── SmsServiceTests.dll │ │ ├── SmsServiceTests.genruntimeconfig.cache │ │ ├── SmsServiceTests.pdb │ │ ├── ref │ │ ├── SmsService.Tests.dll │ │ └── SmsServiceTests.dll │ │ └── refint │ │ ├── SmsService.Tests.dll │ │ └── SmsServiceTests.dll │ ├── SmsService.Tests.csproj.nuget.dgspec.json │ ├── SmsService.Tests.csproj.nuget.g.props │ ├── SmsService.Tests.csproj.nuget.g.targets │ ├── SmsServiceTests.csproj.nuget.dgspec.json │ ├── SmsServiceTests.csproj.nuget.g.props │ ├── SmsServiceTests.csproj.nuget.g.targets │ ├── project.assets.json │ ├── project.nuget.cache │ ├── project.packagespec.json │ └── rider.project.restore.info └── src ├── .dockerignore ├── .idea └── .idea.NotificationService │ └── .idea │ ├── .gitignore │ ├── .name │ ├── indexLayout.xml │ └── vcs.xml ├── Contracts ├── EmailContract │ ├── EmailContract.csproj │ ├── Models │ │ └── SendEmailRequest.cs │ ├── bin │ │ └── Debug │ │ │ └── net7.0 │ │ │ ├── EmailContract.deps.json │ │ │ ├── EmailContract.dll │ │ │ └── EmailContract.pdb │ └── obj │ │ ├── Debug │ │ └── net7.0 │ │ │ ├── .NETCoreApp,Version=v7.0.AssemblyAttributes.cs │ │ │ ├── EmailContract.AssemblyInfo.cs │ │ │ ├── EmailContract.AssemblyInfoInputs.cache │ │ │ ├── EmailContract.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── EmailContract.GlobalUsings.g.cs │ │ │ ├── EmailContract.assets.cache │ │ │ ├── EmailContract.csproj.AssemblyReference.cache │ │ │ ├── EmailContract.csproj.CoreCompileInputs.cache │ │ │ ├── EmailContract.csproj.FileListAbsolute.txt │ │ │ ├── EmailContract.dll │ │ │ ├── EmailContract.pdb │ │ │ ├── ref │ │ │ └── EmailContract.dll │ │ │ └── refint │ │ │ └── EmailContract.dll │ │ ├── EmailContract.csproj.nuget.dgspec.json │ │ ├── EmailContract.csproj.nuget.g.props │ │ ├── EmailContract.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ ├── project.nuget.cache │ │ ├── project.packagespec.json │ │ └── rider.project.restore.info ├── NotificationContract │ ├── Enums │ │ └── NotificationType.cs │ ├── Models │ │ └── SendNotificationRequest.cs │ ├── NotificationContract.csproj │ ├── bin │ │ └── Debug │ │ │ └── net7.0 │ │ │ ├── EmailContract.dll │ │ │ ├── EmailContract.pdb │ │ │ ├── NotificationContract.deps.json │ │ │ ├── NotificationContract.dll │ │ │ ├── NotificationContract.pdb │ │ │ ├── PushNotificationContract.dll │ │ │ ├── PushNotificationContract.pdb │ │ │ ├── SmsContract.dll │ │ │ └── SmsContract.pdb │ └── obj │ │ ├── Debug │ │ └── net7.0 │ │ │ ├── .NETCoreApp,Version=v7.0.AssemblyAttributes.cs │ │ │ ├── NotificationContract.AssemblyInfo.cs │ │ │ ├── NotificationContract.AssemblyInfoInputs.cache │ │ │ ├── NotificationContract.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── NotificationContract.GlobalUsings.g.cs │ │ │ ├── NotificationContract.assets.cache │ │ │ ├── NotificationContract.csproj.AssemblyReference.cache │ │ │ ├── NotificationContract.csproj.CopyComplete │ │ │ ├── NotificationContract.csproj.CoreCompileInputs.cache │ │ │ ├── NotificationContract.csproj.FileListAbsolute.txt │ │ │ ├── NotificationContract.dll │ │ │ ├── NotificationContract.pdb │ │ │ ├── ref │ │ │ └── NotificationContract.dll │ │ │ └── refint │ │ │ └── NotificationContract.dll │ │ ├── NotificationContract.csproj.nuget.dgspec.json │ │ ├── NotificationContract.csproj.nuget.g.props │ │ ├── NotificationContract.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ ├── project.nuget.cache │ │ ├── project.packagespec.json │ │ └── rider.project.restore.info ├── PushNotificationContract │ ├── Models │ │ └── SendPushMessageRequest.cs │ ├── PushNotificationContract.csproj │ ├── bin │ │ └── Debug │ │ │ └── net7.0 │ │ │ ├── PushNotificationContract.deps.json │ │ │ ├── PushNotificationContract.dll │ │ │ ├── PushNotificationContract.pdb │ │ │ └── PushNotificationContracts.deps.json │ └── obj │ │ ├── Debug │ │ └── net7.0 │ │ │ ├── .NETCoreApp,Version=v7.0.AssemblyAttributes.cs │ │ │ ├── PushNotificationContract.AssemblyInfo.cs │ │ │ ├── PushNotificationContract.AssemblyInfoInputs.cache │ │ │ ├── PushNotificationContract.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── PushNotificationContract.GlobalUsings.g.cs │ │ │ ├── PushNotificationContract.assets.cache │ │ │ ├── PushNotificationContract.csproj.AssemblyReference.cache │ │ │ ├── PushNotificationContract.csproj.CoreCompileInputs.cache │ │ │ ├── PushNotificationContract.csproj.FileListAbsolute.txt │ │ │ ├── PushNotificationContract.dll │ │ │ ├── PushNotificationContract.pdb │ │ │ ├── PushNotificationContracts.AssemblyInfo.cs │ │ │ ├── PushNotificationContracts.AssemblyInfoInputs.cache │ │ │ ├── PushNotificationContracts.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── PushNotificationContracts.GlobalUsings.g.cs │ │ │ ├── PushNotificationContracts.assets.cache │ │ │ ├── PushNotificationContracts.csproj.AssemblyReference.cache │ │ │ ├── PushNotificationContracts.csproj.CoreCompileInputs.cache │ │ │ ├── PushNotificationContracts.csproj.FileListAbsolute.txt │ │ │ ├── PushNotificationContracts.dll │ │ │ ├── PushNotificationContracts.pdb │ │ │ ├── ref │ │ │ ├── PushNotificationContract.dll │ │ │ └── PushNotificationContracts.dll │ │ │ └── refint │ │ │ ├── PushNotificationContract.dll │ │ │ └── PushNotificationContracts.dll │ │ ├── PushNotificationContract.csproj.nuget.dgspec.json │ │ ├── PushNotificationContract.csproj.nuget.g.props │ │ ├── PushNotificationContract.csproj.nuget.g.targets │ │ ├── PushNotificationContracts.csproj.nuget.dgspec.json │ │ ├── PushNotificationContracts.csproj.nuget.g.props │ │ ├── PushNotificationContracts.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ ├── project.nuget.cache │ │ ├── project.packagespec.json │ │ └── rider.project.restore.info └── SmsContract │ ├── Enums │ └── Provider.cs │ ├── Models │ ├── SendSmsRequest.cs │ └── SendSmsResponse.cs │ ├── SmsContract.csproj │ ├── bin │ └── Debug │ │ └── net7.0 │ │ ├── SmsContract.deps.json │ │ ├── SmsContract.dll │ │ └── SmsContract.pdb │ └── obj │ ├── Debug │ └── net7.0 │ │ ├── .NETCoreApp,Version=v7.0.AssemblyAttributes.cs │ │ ├── SmsContact.AssemblyInfo.cs │ │ ├── SmsContact.AssemblyInfoInputs.cache │ │ ├── SmsContact.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── SmsContact.GlobalUsings.g.cs │ │ ├── SmsContact.assets.cache │ │ ├── SmsContact.csproj.AssemblyReference.cache │ │ ├── SmsContract.AssemblyInfo.cs │ │ ├── SmsContract.AssemblyInfoInputs.cache │ │ ├── SmsContract.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── SmsContract.GlobalUsings.g.cs │ │ ├── SmsContract.assets.cache │ │ ├── SmsContract.csproj.AssemblyReference.cache │ │ ├── SmsContract.csproj.CoreCompileInputs.cache │ │ ├── SmsContract.csproj.FileListAbsolute.txt │ │ ├── SmsContract.dll │ │ ├── SmsContract.pdb │ │ ├── SmsServiceContact.AssemblyInfo.cs │ │ ├── SmsServiceContact.AssemblyInfoInputs.cache │ │ ├── SmsServiceContact.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── SmsServiceContact.GlobalUsings.g.cs │ │ ├── SmsServiceContact.assets.cache │ │ ├── SmsServiceContact.csproj.AssemblyReference.cache │ │ ├── ref │ │ └── SmsContract.dll │ │ └── refint │ │ └── SmsContract.dll │ ├── SmsContact.csproj.nuget.dgspec.json │ ├── SmsContact.csproj.nuget.g.props │ ├── SmsContact.csproj.nuget.g.targets │ ├── SmsContract.csproj.nuget.dgspec.json │ ├── SmsContract.csproj.nuget.g.props │ ├── SmsContract.csproj.nuget.g.targets │ ├── SmsServiceContact.csproj.nuget.dgspec.json │ ├── SmsServiceContact.csproj.nuget.g.props │ ├── SmsServiceContact.csproj.nuget.g.targets │ ├── project.assets.json │ ├── project.nuget.cache │ ├── project.packagespec.json │ └── rider.project.restore.info ├── EmailService └── obj │ ├── EmailService.csproj.nuget.dgspec.json │ ├── EmailService.csproj.nuget.g.props │ ├── EmailService.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── NotificationService.sln ├── NotificationService.sln.DotSettings.user ├── Services ├── EmailService │ ├── ApplicationCore │ │ ├── Interfaces │ │ │ ├── IEmailService.cs │ │ │ └── ISmtpClient.cs │ │ ├── Mappers │ │ │ └── RequestMapper.cs │ │ └── Services │ │ │ ├── EmailService.cs │ │ │ └── SmtpClientService.cs │ ├── Dockerfile │ ├── EmailService.csproj │ ├── Ioc │ │ ├── Configuration.cs │ │ └── Configurator.cs │ ├── Presentation │ │ └── Consumers │ │ │ └── EmailConsumer.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── bin │ │ └── Debug │ │ │ └── net7.0 │ │ │ ├── BouncyCastle.Cryptography.dll │ │ │ ├── Elasticsearch.Net.dll │ │ │ ├── EmailContract.dll │ │ │ ├── EmailContract.pdb │ │ │ ├── EmailService │ │ │ ├── EmailService.deps.json │ │ │ ├── EmailService.dll │ │ │ ├── EmailService.pdb │ │ │ ├── EmailService.runtimeconfig.json │ │ │ ├── MailKit.dll │ │ │ ├── MassTransit.Abstractions.dll │ │ │ ├── MassTransit.AspNetCoreIntegration.dll │ │ │ ├── MassTransit.ExtensionsDependencyInjectionIntegration.dll │ │ │ ├── MassTransit.RabbitMqTransport.dll │ │ │ ├── MassTransit.dll │ │ │ ├── Microsoft.AspNetCore.OpenApi.dll │ │ │ ├── Microsoft.Extensions.DependencyModel.dll │ │ │ ├── Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Diagnostics.HealthChecks.dll │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Options.dll │ │ │ ├── Microsoft.OpenApi.dll │ │ │ ├── MimeKit.dll │ │ │ ├── RabbitMQ.Client.dll │ │ │ ├── Serilog.AspNetCore.dll │ │ │ ├── Serilog.Enrichers.Environment.dll │ │ │ ├── Serilog.Extensions.Hosting.dll │ │ │ ├── Serilog.Extensions.Logging.dll │ │ │ ├── Serilog.Formatting.Compact.dll │ │ │ ├── Serilog.Formatting.Elasticsearch.dll │ │ │ ├── Serilog.Settings.Configuration.dll │ │ │ ├── Serilog.Sinks.Console.dll │ │ │ ├── Serilog.Sinks.Debug.dll │ │ │ ├── Serilog.Sinks.Elasticsearch.dll │ │ │ ├── Serilog.Sinks.File.dll │ │ │ ├── Serilog.Sinks.PeriodicBatching.dll │ │ │ ├── Serilog.dll │ │ │ ├── Swashbuckle.AspNetCore.Swagger.dll │ │ │ ├── Swashbuckle.AspNetCore.SwaggerGen.dll │ │ │ ├── Swashbuckle.AspNetCore.SwaggerUI.dll │ │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ │ ├── System.Security.Cryptography.Pkcs.dll │ │ │ ├── System.Text.Json.dll │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ └── runtimes │ │ │ └── win │ │ │ └── lib │ │ │ └── net7.0 │ │ │ └── System.Security.Cryptography.Pkcs.dll │ └── obj │ │ ├── Debug │ │ └── net7.0 │ │ │ ├── .NETCoreApp,Version=v7.0.AssemblyAttributes.cs │ │ │ ├── EmailService.AssemblyInfo.cs │ │ │ ├── EmailService.AssemblyInfoInputs.cache │ │ │ ├── EmailService.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── EmailService.GlobalUsings.g.cs │ │ │ ├── EmailService.MvcApplicationPartsAssemblyInfo.cache │ │ │ ├── EmailService.MvcApplicationPartsAssemblyInfo.cs │ │ │ ├── EmailService.assets.cache │ │ │ ├── EmailService.csproj.AssemblyReference.cache │ │ │ ├── EmailService.csproj.CopyComplete │ │ │ ├── EmailService.csproj.CoreCompileInputs.cache │ │ │ ├── EmailService.csproj.FileListAbsolute.txt │ │ │ ├── EmailService.dll │ │ │ ├── EmailService.genruntimeconfig.cache │ │ │ ├── EmailService.pdb │ │ │ ├── apphost │ │ │ ├── ref │ │ │ └── EmailService.dll │ │ │ ├── refint │ │ │ └── EmailService.dll │ │ │ ├── staticwebassets.build.json │ │ │ └── staticwebassets │ │ │ ├── msbuild.build.EmailService.props │ │ │ ├── msbuild.buildMultiTargeting.EmailService.props │ │ │ └── msbuild.buildTransitive.EmailService.props │ │ ├── EmailService.csproj.nuget.dgspec.json │ │ ├── EmailService.csproj.nuget.g.props │ │ ├── EmailService.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ ├── project.nuget.cache │ │ ├── project.packagespec.json │ │ └── rider.project.restore.info ├── NotificationService │ ├── ApplicationCore │ │ ├── Interfaces │ │ │ └── INotificationService.cs │ │ └── Services │ │ │ └── NotificationService.cs │ ├── Dockerfile │ ├── Ioc │ │ ├── Configuration.cs │ │ └── Configurator.cs │ ├── NotificationService.csproj │ ├── Presentation │ │ ├── Consumers │ │ │ └── NotificationConsumer.cs │ │ └── Controllers │ │ │ └── NotificationController.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── bin │ │ └── Debug │ │ │ └── net7.0 │ │ │ ├── BouncyCastle.Cryptography.dll │ │ │ ├── Elasticsearch.Net.dll │ │ │ ├── EmailContract.dll │ │ │ ├── EmailContract.pdb │ │ │ ├── FirebaseAdmin.dll │ │ │ ├── Google.Api.Gax.Rest.dll │ │ │ ├── Google.Api.Gax.dll │ │ │ ├── Google.Apis.Auth.PlatformServices.dll │ │ │ ├── Google.Apis.Auth.dll │ │ │ ├── Google.Apis.Core.dll │ │ │ ├── Google.Apis.dll │ │ │ ├── MassTransit.Abstractions.dll │ │ │ ├── MassTransit.AspNetCoreIntegration.dll │ │ │ ├── MassTransit.ExtensionsDependencyInjectionIntegration.dll │ │ │ ├── MassTransit.RabbitMqTransport.dll │ │ │ ├── MassTransit.dll │ │ │ ├── Microsoft.AspNetCore.OpenApi.dll │ │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ │ ├── Microsoft.Extensions.DependencyModel.dll │ │ │ ├── Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Diagnostics.HealthChecks.dll │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Options.dll │ │ │ ├── Microsoft.OpenApi.dll │ │ │ ├── MimeKit.dll │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── NotificationContract.dll │ │ │ ├── NotificationContract.pdb │ │ │ ├── NotificationService │ │ │ ├── NotificationService.deps.json │ │ │ ├── NotificationService.dll │ │ │ ├── NotificationService.pdb │ │ │ ├── NotificationService.runtimeconfig.json │ │ │ ├── PushNotificationContract.dll │ │ │ ├── PushNotificationContract.pdb │ │ │ ├── RabbitMQ.Client.dll │ │ │ ├── Serilog.AspNetCore.dll │ │ │ ├── Serilog.Enrichers.Environment.dll │ │ │ ├── Serilog.Extensions.Hosting.dll │ │ │ ├── Serilog.Extensions.Logging.dll │ │ │ ├── Serilog.Formatting.Compact.dll │ │ │ ├── Serilog.Formatting.Elasticsearch.dll │ │ │ ├── Serilog.Settings.Configuration.dll │ │ │ ├── Serilog.Sinks.Console.dll │ │ │ ├── Serilog.Sinks.Debug.dll │ │ │ ├── Serilog.Sinks.Elasticsearch.dll │ │ │ ├── Serilog.Sinks.File.dll │ │ │ ├── Serilog.Sinks.PeriodicBatching.dll │ │ │ ├── Serilog.dll │ │ │ ├── SmsContract.dll │ │ │ ├── SmsContract.pdb │ │ │ ├── Swashbuckle.AspNetCore.Swagger.dll │ │ │ ├── Swashbuckle.AspNetCore.SwaggerGen.dll │ │ │ ├── Swashbuckle.AspNetCore.SwaggerUI.dll │ │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ │ ├── System.Security.Cryptography.Pkcs.dll │ │ │ ├── System.Text.Json.dll │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ └── runtimes │ │ │ └── win │ │ │ └── lib │ │ │ └── net7.0 │ │ │ └── System.Security.Cryptography.Pkcs.dll │ └── obj │ │ ├── Debug │ │ └── net7.0 │ │ │ ├── .NETCoreApp,Version=v7.0.AssemblyAttributes.cs │ │ │ ├── NotificationService.AssemblyInfo.cs │ │ │ ├── NotificationService.AssemblyInfoInputs.cache │ │ │ ├── NotificationService.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── NotificationService.GlobalUsings.g.cs │ │ │ ├── NotificationService.MvcApplicationPartsAssemblyInfo.cache │ │ │ ├── NotificationService.MvcApplicationPartsAssemblyInfo.cs │ │ │ ├── NotificationService.assets.cache │ │ │ ├── NotificationService.csproj.AssemblyReference.cache │ │ │ ├── NotificationService.csproj.CopyComplete │ │ │ ├── NotificationService.csproj.CoreCompileInputs.cache │ │ │ ├── NotificationService.csproj.FileListAbsolute.txt │ │ │ ├── NotificationService.dll │ │ │ ├── NotificationService.genruntimeconfig.cache │ │ │ ├── NotificationService.pdb │ │ │ ├── apphost │ │ │ ├── ref │ │ │ └── NotificationService.dll │ │ │ ├── refint │ │ │ └── NotificationService.dll │ │ │ ├── staticwebassets.build.json │ │ │ └── staticwebassets │ │ │ ├── msbuild.build.NotificationService.props │ │ │ ├── msbuild.buildMultiTargeting.NotificationService.props │ │ │ └── msbuild.buildTransitive.NotificationService.props │ │ ├── NotificationService.csproj.nuget.dgspec.json │ │ ├── NotificationService.csproj.nuget.g.props │ │ ├── NotificationService.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ ├── project.nuget.cache │ │ ├── project.packagespec.json │ │ └── rider.project.restore.info ├── PushNotificationService │ ├── ApplicationCore │ │ ├── Interfaces │ │ │ └── IPushNotificationService.cs │ │ └── Services │ │ │ └── PushNotificationService.cs │ ├── Dockerfile │ ├── Ioc │ │ ├── Configuration.cs │ │ └── Configurator.cs │ ├── Presentation │ │ └── Consumers │ │ │ └── PushNotificationConsumer.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── PushNotificationService.csproj │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── bin │ │ └── Debug │ │ │ └── net7.0 │ │ │ ├── Elasticsearch.Net.dll │ │ │ ├── FirebaseAdmin.dll │ │ │ ├── Google.Api.Gax.Rest.dll │ │ │ ├── Google.Api.Gax.dll │ │ │ ├── Google.Apis.Auth.PlatformServices.dll │ │ │ ├── Google.Apis.Auth.dll │ │ │ ├── Google.Apis.Core.dll │ │ │ ├── Google.Apis.dll │ │ │ ├── MassTransit.Abstractions.dll │ │ │ ├── MassTransit.AspNetCoreIntegration.dll │ │ │ ├── MassTransit.ExtensionsDependencyInjectionIntegration.dll │ │ │ ├── MassTransit.RabbitMqTransport.dll │ │ │ ├── MassTransit.dll │ │ │ ├── Microsoft.AspNetCore.OpenApi.dll │ │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ │ ├── Microsoft.Extensions.DependencyModel.dll │ │ │ ├── Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Diagnostics.HealthChecks.dll │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Options.dll │ │ │ ├── Microsoft.OpenApi.dll │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── PushNotificationContract.dll │ │ │ ├── PushNotificationContract.pdb │ │ │ ├── PushNotificationService │ │ │ ├── PushNotificationService.deps.json │ │ │ ├── PushNotificationService.dll │ │ │ ├── PushNotificationService.pdb │ │ │ ├── PushNotificationService.runtimeconfig.json │ │ │ ├── RabbitMQ.Client.dll │ │ │ ├── Serilog.AspNetCore.dll │ │ │ ├── Serilog.Enrichers.Environment.dll │ │ │ ├── Serilog.Extensions.Hosting.dll │ │ │ ├── Serilog.Extensions.Logging.dll │ │ │ ├── Serilog.Formatting.Compact.dll │ │ │ ├── Serilog.Formatting.Elasticsearch.dll │ │ │ ├── Serilog.Settings.Configuration.dll │ │ │ ├── Serilog.Sinks.Console.dll │ │ │ ├── Serilog.Sinks.Debug.dll │ │ │ ├── Serilog.Sinks.Elasticsearch.dll │ │ │ ├── Serilog.Sinks.File.dll │ │ │ ├── Serilog.Sinks.PeriodicBatching.dll │ │ │ ├── Serilog.dll │ │ │ ├── Swashbuckle.AspNetCore.Swagger.dll │ │ │ ├── Swashbuckle.AspNetCore.SwaggerGen.dll │ │ │ ├── Swashbuckle.AspNetCore.SwaggerUI.dll │ │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ │ ├── System.Text.Json.dll │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ └── firebase.json │ ├── firebase.json │ └── obj │ │ ├── Debug │ │ └── net7.0 │ │ │ ├── .NETCoreApp,Version=v7.0.AssemblyAttributes.cs │ │ │ ├── PushNotificationService.AssemblyInfo.cs │ │ │ ├── PushNotificationService.AssemblyInfoInputs.cache │ │ │ ├── PushNotificationService.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── PushNotificationService.GlobalUsings.g.cs │ │ │ ├── PushNotificationService.MvcApplicationPartsAssemblyInfo.cache │ │ │ ├── PushNotificationService.MvcApplicationPartsAssemblyInfo.cs │ │ │ ├── PushNotificationService.assets.cache │ │ │ ├── PushNotificationService.csproj.AssemblyReference.cache │ │ │ ├── PushNotificationService.csproj.CopyComplete │ │ │ ├── PushNotificationService.csproj.CoreCompileInputs.cache │ │ │ ├── PushNotificationService.csproj.FileListAbsolute.txt │ │ │ ├── PushNotificationService.dll │ │ │ ├── PushNotificationService.genruntimeconfig.cache │ │ │ ├── PushNotificationService.pdb │ │ │ ├── PushService.AssemblyInfo.cs │ │ │ ├── PushService.AssemblyInfoInputs.cache │ │ │ ├── PushService.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── PushService.GlobalUsings.g.cs │ │ │ ├── PushService.assets.cache │ │ │ ├── PushService.csproj.AssemblyReference.cache │ │ │ ├── apphost │ │ │ ├── ref │ │ │ └── PushNotificationService.dll │ │ │ ├── refint │ │ │ └── PushNotificationService.dll │ │ │ ├── staticwebassets.build.json │ │ │ └── staticwebassets │ │ │ ├── msbuild.build.PushNotificationService.props │ │ │ ├── msbuild.buildMultiTargeting.PushNotificationService.props │ │ │ └── msbuild.buildTransitive.PushNotificationService.props │ │ ├── PushNotificationService.csproj.nuget.dgspec.json │ │ ├── PushNotificationService.csproj.nuget.g.props │ │ ├── PushNotificationService.csproj.nuget.g.targets │ │ ├── PushService.csproj.nuget.dgspec.json │ │ ├── PushService.csproj.nuget.g.props │ │ ├── PushService.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ ├── project.nuget.cache │ │ ├── project.packagespec.json │ │ └── rider.project.restore.info └── SmsService │ ├── ApplicationCore │ ├── Interfaces │ │ ├── ISmsProvider.cs │ │ └── ISmsService.cs │ └── Services │ │ ├── KaveNegarProvider.cs │ │ └── SendSmsService.cs │ ├── Dockerfile │ ├── Ioc │ ├── Configuration.cs │ └── Configurator.cs │ ├── Presentation │ └── Consumers │ │ └── SmsConsumer.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── SmsService.csproj │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── bin │ └── Debug │ │ └── net7.0 │ │ ├── Elasticsearch.Net.dll │ │ ├── Kavenegar.Core.dll │ │ ├── MassTransit.Abstractions.dll │ │ ├── MassTransit.AspNetCoreIntegration.dll │ │ ├── MassTransit.ExtensionsDependencyInjectionIntegration.dll │ │ ├── MassTransit.RabbitMqTransport.dll │ │ ├── MassTransit.dll │ │ ├── Microsoft.AspNetCore.JsonPatch.dll │ │ ├── Microsoft.AspNetCore.Mvc.Razor.Extensions.dll │ │ ├── Microsoft.AspNetCore.OpenApi.dll │ │ ├── Microsoft.AspNetCore.Razor.Language.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.dll │ │ ├── Microsoft.CodeAnalysis.Razor.dll │ │ ├── Microsoft.CodeAnalysis.dll │ │ ├── Microsoft.DotNet.PlatformAbstractions.dll │ │ ├── Microsoft.Extensions.DependencyModel.dll │ │ ├── Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll │ │ ├── Microsoft.Extensions.Diagnostics.HealthChecks.dll │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ ├── Microsoft.Extensions.Options.dll │ │ ├── Microsoft.OpenApi.dll │ │ ├── Newtonsoft.Json.Bson.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── RabbitMQ.Client.dll │ │ ├── ResponseHelpers.dll │ │ ├── ResponseHelpers.pdb │ │ ├── Serilog.AspNetCore.dll │ │ ├── Serilog.Enrichers.Environment.dll │ │ ├── Serilog.Extensions.Hosting.dll │ │ ├── Serilog.Extensions.Logging.dll │ │ ├── Serilog.Formatting.Compact.dll │ │ ├── Serilog.Formatting.Elasticsearch.dll │ │ ├── Serilog.Settings.Configuration.dll │ │ ├── Serilog.Sinks.Console.dll │ │ ├── Serilog.Sinks.Debug.dll │ │ ├── Serilog.Sinks.Elasticsearch.dll │ │ ├── Serilog.Sinks.File.dll │ │ ├── Serilog.Sinks.PeriodicBatching.dll │ │ ├── Serilog.dll │ │ ├── SmsContract.dll │ │ ├── SmsContract.pdb │ │ ├── SmsService │ │ ├── SmsService.deps.json │ │ ├── SmsService.dll │ │ ├── SmsService.pdb │ │ ├── SmsService.runtimeconfig.json │ │ ├── Swashbuckle.AspNetCore.Swagger.dll │ │ ├── Swashbuckle.AspNetCore.SwaggerGen.dll │ │ ├── Swashbuckle.AspNetCore.SwaggerUI.dll │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ ├── System.Security.Permissions.dll │ │ ├── System.Text.Json.dll │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ └── obj │ ├── Debug │ └── net7.0 │ │ ├── .NETCoreApp,Version=v7.0.AssemblyAttributes.cs │ │ ├── SmsService.AssemblyInfo.cs │ │ ├── SmsService.AssemblyInfoInputs.cache │ │ ├── SmsService.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── SmsService.GlobalUsings.g.cs │ │ ├── SmsService.MvcApplicationPartsAssemblyInfo.cache │ │ ├── SmsService.MvcApplicationPartsAssemblyInfo.cs │ │ ├── SmsService.assets.cache │ │ ├── SmsService.csproj.AssemblyReference.cache │ │ ├── SmsService.csproj.CopyComplete │ │ ├── SmsService.csproj.CoreCompileInputs.cache │ │ ├── SmsService.csproj.FileListAbsolute.txt │ │ ├── SmsService.dll │ │ ├── SmsService.genruntimeconfig.cache │ │ ├── SmsService.pdb │ │ ├── apphost │ │ ├── ref │ │ └── SmsService.dll │ │ ├── refint │ │ └── SmsService.dll │ │ ├── staticwebassets.build.json │ │ └── staticwebassets │ │ ├── msbuild.build.SmsService.props │ │ ├── msbuild.buildMultiTargeting.SmsService.props │ │ └── msbuild.buildTransitive.SmsService.props │ ├── SmsService.csproj.nuget.dgspec.json │ ├── SmsService.csproj.nuget.g.props │ ├── SmsService.csproj.nuget.g.targets │ ├── project.assets.json │ ├── project.nuget.cache │ ├── project.packagespec.json │ └── rider.project.restore.info └── SmsService └── obj ├── SmsService.csproj.nuget.dgspec.json ├── SmsService.csproj.nuget.g.props ├── SmsService.csproj.nuget.g.targets ├── project.assets.json └── project.nuget.cache /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/README.md -------------------------------------------------------------------------------- /Tests/Contracts/NotificationContract.Tests/NotificationContract.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Contracts/NotificationContract.Tests/NotificationContract.Tests.csproj -------------------------------------------------------------------------------- /Tests/Contracts/NotificationContract.Tests/TestData/TestDataGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Contracts/NotificationContract.Tests/TestData/TestDataGenerator.cs -------------------------------------------------------------------------------- /Tests/Contracts/NotificationContract.Tests/Usings.cs: -------------------------------------------------------------------------------- 1 | global using Xunit; -------------------------------------------------------------------------------- /Tests/Contracts/NotificationContract.Tests/bin/Debug/net7.0/CoverletSourceRootsMapping: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Contracts/NotificationContract.Tests/bin/Debug/net7.0/CoverletSourceRootsMapping -------------------------------------------------------------------------------- /Tests/Contracts/NotificationContract.Tests/bin/Debug/net7.0/EmailContract.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Contracts/NotificationContract.Tests/bin/Debug/net7.0/EmailContract.dll -------------------------------------------------------------------------------- /Tests/Contracts/NotificationContract.Tests/bin/Debug/net7.0/EmailContract.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Contracts/NotificationContract.Tests/bin/Debug/net7.0/EmailContract.pdb -------------------------------------------------------------------------------- /Tests/Contracts/NotificationContract.Tests/bin/Debug/net7.0/FirebaseAdmin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Contracts/NotificationContract.Tests/bin/Debug/net7.0/FirebaseAdmin.dll -------------------------------------------------------------------------------- /Tests/Contracts/NotificationContract.Tests/bin/Debug/net7.0/Google.Api.Gax.Rest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Contracts/NotificationContract.Tests/bin/Debug/net7.0/Google.Api.Gax.Rest.dll -------------------------------------------------------------------------------- /Tests/Contracts/NotificationContract.Tests/bin/Debug/net7.0/Google.Api.Gax.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Contracts/NotificationContract.Tests/bin/Debug/net7.0/Google.Api.Gax.dll -------------------------------------------------------------------------------- /Tests/Contracts/NotificationContract.Tests/bin/Debug/net7.0/Google.Apis.Auth.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Contracts/NotificationContract.Tests/bin/Debug/net7.0/Google.Apis.Auth.dll -------------------------------------------------------------------------------- /Tests/Contracts/NotificationContract.Tests/bin/Debug/net7.0/Google.Apis.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Contracts/NotificationContract.Tests/bin/Debug/net7.0/Google.Apis.Core.dll -------------------------------------------------------------------------------- /Tests/Contracts/NotificationContract.Tests/bin/Debug/net7.0/Google.Apis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Contracts/NotificationContract.Tests/bin/Debug/net7.0/Google.Apis.dll -------------------------------------------------------------------------------- /Tests/Contracts/NotificationContract.Tests/bin/Debug/net7.0/MimeKit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Contracts/NotificationContract.Tests/bin/Debug/net7.0/MimeKit.dll -------------------------------------------------------------------------------- /Tests/Contracts/NotificationContract.Tests/bin/Debug/net7.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Contracts/NotificationContract.Tests/bin/Debug/net7.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Tests/Contracts/NotificationContract.Tests/bin/Debug/net7.0/NotificationContract.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Contracts/NotificationContract.Tests/bin/Debug/net7.0/NotificationContract.dll -------------------------------------------------------------------------------- /Tests/Contracts/NotificationContract.Tests/bin/Debug/net7.0/NotificationContract.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Contracts/NotificationContract.Tests/bin/Debug/net7.0/NotificationContract.pdb -------------------------------------------------------------------------------- /Tests/Contracts/NotificationContract.Tests/bin/Debug/net7.0/NuGet.Frameworks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Contracts/NotificationContract.Tests/bin/Debug/net7.0/NuGet.Frameworks.dll -------------------------------------------------------------------------------- /Tests/Contracts/NotificationContract.Tests/bin/Debug/net7.0/SmsContract.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Contracts/NotificationContract.Tests/bin/Debug/net7.0/SmsContract.dll -------------------------------------------------------------------------------- /Tests/Contracts/NotificationContract.Tests/bin/Debug/net7.0/SmsContract.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Contracts/NotificationContract.Tests/bin/Debug/net7.0/SmsContract.pdb -------------------------------------------------------------------------------- /Tests/Contracts/NotificationContract.Tests/bin/Debug/net7.0/testhost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Contracts/NotificationContract.Tests/bin/Debug/net7.0/testhost.dll -------------------------------------------------------------------------------- /Tests/Contracts/NotificationContract.Tests/bin/Debug/net7.0/xunit.abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Contracts/NotificationContract.Tests/bin/Debug/net7.0/xunit.abstractions.dll -------------------------------------------------------------------------------- /Tests/Contracts/NotificationContract.Tests/bin/Debug/net7.0/xunit.assert.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Contracts/NotificationContract.Tests/bin/Debug/net7.0/xunit.assert.dll -------------------------------------------------------------------------------- /Tests/Contracts/NotificationContract.Tests/bin/Debug/net7.0/xunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Contracts/NotificationContract.Tests/bin/Debug/net7.0/xunit.core.dll -------------------------------------------------------------------------------- /Tests/Contracts/NotificationContract.Tests/bin/Debug/net7.0/xunit.execution.dotnet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Contracts/NotificationContract.Tests/bin/Debug/net7.0/xunit.execution.dotnet.dll -------------------------------------------------------------------------------- /Tests/Contracts/NotificationContract.Tests/obj/Debug/net7.0/NotificationContract.Tests.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tests/Contracts/NotificationContract.Tests/obj/Debug/net7.0/NotificationContract.Tests.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 7f950861b62a2e39c0f8a24102a4f2e6b905e6ac 2 | -------------------------------------------------------------------------------- /Tests/Contracts/NotificationContract.Tests/obj/Debug/net7.0/NotificationContract.Tests.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | fbffa8e264b0ac38080a7ec83b96fe86275cad7f 2 | -------------------------------------------------------------------------------- /Tests/Contracts/NotificationContract.Tests/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Contracts/NotificationContract.Tests/obj/project.assets.json -------------------------------------------------------------------------------- /Tests/Contracts/NotificationContract.Tests/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Contracts/NotificationContract.Tests/obj/project.nuget.cache -------------------------------------------------------------------------------- /Tests/Contracts/NotificationContract.Tests/obj/project.packagespec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Contracts/NotificationContract.Tests/obj/project.packagespec.json -------------------------------------------------------------------------------- /Tests/Contracts/NotificationContract.Tests/obj/rider.project.restore.info: -------------------------------------------------------------------------------- 1 | 16951451038811363 -------------------------------------------------------------------------------- /Tests/Contracts/PushNotificationContract.Tests/PushNotificationContract.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Contracts/PushNotificationContract.Tests/PushNotificationContract.Tests.csproj -------------------------------------------------------------------------------- /Tests/Contracts/PushNotificationContract.Tests/TestData/TestDataGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Contracts/PushNotificationContract.Tests/TestData/TestDataGenerator.cs -------------------------------------------------------------------------------- /Tests/Contracts/PushNotificationContract.Tests/Usings.cs: -------------------------------------------------------------------------------- 1 | global using Xunit; -------------------------------------------------------------------------------- /Tests/Contracts/PushNotificationContract.Tests/bin/Debug/net7.0/FirebaseAdmin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Contracts/PushNotificationContract.Tests/bin/Debug/net7.0/FirebaseAdmin.dll -------------------------------------------------------------------------------- /Tests/Contracts/PushNotificationContract.Tests/bin/Debug/net7.0/Google.Api.Gax.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Contracts/PushNotificationContract.Tests/bin/Debug/net7.0/Google.Api.Gax.dll -------------------------------------------------------------------------------- /Tests/Contracts/PushNotificationContract.Tests/bin/Debug/net7.0/Google.Apis.Auth.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Contracts/PushNotificationContract.Tests/bin/Debug/net7.0/Google.Apis.Auth.dll -------------------------------------------------------------------------------- /Tests/Contracts/PushNotificationContract.Tests/bin/Debug/net7.0/Google.Apis.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Contracts/PushNotificationContract.Tests/bin/Debug/net7.0/Google.Apis.Core.dll -------------------------------------------------------------------------------- /Tests/Contracts/PushNotificationContract.Tests/bin/Debug/net7.0/Google.Apis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Contracts/PushNotificationContract.Tests/bin/Debug/net7.0/Google.Apis.dll -------------------------------------------------------------------------------- /Tests/Contracts/PushNotificationContract.Tests/bin/Debug/net7.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Contracts/PushNotificationContract.Tests/bin/Debug/net7.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Tests/Contracts/PushNotificationContract.Tests/bin/Debug/net7.0/NuGet.Frameworks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Contracts/PushNotificationContract.Tests/bin/Debug/net7.0/NuGet.Frameworks.dll -------------------------------------------------------------------------------- /Tests/Contracts/PushNotificationContract.Tests/bin/Debug/net7.0/testhost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Contracts/PushNotificationContract.Tests/bin/Debug/net7.0/testhost.dll -------------------------------------------------------------------------------- /Tests/Contracts/PushNotificationContract.Tests/bin/Debug/net7.0/xunit.abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Contracts/PushNotificationContract.Tests/bin/Debug/net7.0/xunit.abstractions.dll -------------------------------------------------------------------------------- /Tests/Contracts/PushNotificationContract.Tests/bin/Debug/net7.0/xunit.assert.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Contracts/PushNotificationContract.Tests/bin/Debug/net7.0/xunit.assert.dll -------------------------------------------------------------------------------- /Tests/Contracts/PushNotificationContract.Tests/bin/Debug/net7.0/xunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Contracts/PushNotificationContract.Tests/bin/Debug/net7.0/xunit.core.dll -------------------------------------------------------------------------------- /Tests/Contracts/PushNotificationContract.Tests/obj/Debug/net7.0/PushNotificationContract.Tests.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | ef62e086fa67967c34179f5985f1d785e73983eb 2 | -------------------------------------------------------------------------------- /Tests/Contracts/PushNotificationContract.Tests/obj/Debug/net7.0/PushNotificationContract.Tests.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tests/Contracts/PushNotificationContract.Tests/obj/Debug/net7.0/PushNotificationContract.Tests.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 7ac5f20a601b53fd39e665b3afcfd87f52e57d0a 2 | -------------------------------------------------------------------------------- /Tests/Contracts/PushNotificationContract.Tests/obj/Debug/net7.0/PushNotificationContract.Tests.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 2e24eb9e9c65a05d7ee7266140dddc48b9fa7a70 2 | -------------------------------------------------------------------------------- /Tests/Contracts/PushNotificationContract.Tests/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Contracts/PushNotificationContract.Tests/obj/project.assets.json -------------------------------------------------------------------------------- /Tests/Contracts/PushNotificationContract.Tests/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Contracts/PushNotificationContract.Tests/obj/project.nuget.cache -------------------------------------------------------------------------------- /Tests/Contracts/PushNotificationContract.Tests/obj/project.packagespec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Contracts/PushNotificationContract.Tests/obj/project.packagespec.json -------------------------------------------------------------------------------- /Tests/Contracts/PushNotificationContract.Tests/obj/rider.project.restore.info: -------------------------------------------------------------------------------- 1 | 16951451038756986 -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/ApplicationCore/Services/EmailService.Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/ApplicationCore/Services/EmailService.Tests.cs -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/EmailService.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/EmailService.Tests.csproj -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/TestData/DataAttributes/EmailWithNullReceptorData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/TestData/DataAttributes/EmailWithNullReceptorData.cs -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/TestData/TestDataGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/TestData/TestDataGenerator.cs -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/Usings.cs: -------------------------------------------------------------------------------- 1 | global using Xunit; -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/appsettings.Development.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/appsettings.Development.test.json -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/appsettings.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/appsettings.test.json -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/BouncyCastle.Cryptography.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/BouncyCastle.Cryptography.dll -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/Castle.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/Castle.Core.dll -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/CoverletSourceRootsMapping: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/CoverletSourceRootsMapping -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/Elasticsearch.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/Elasticsearch.Net.dll -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/EmailContract.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/EmailContract.dll -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/EmailContract.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/EmailContract.pdb -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/EmailService: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/EmailService -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/EmailService.Tests.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/EmailService.Tests.deps.json -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/EmailService.Tests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/EmailService.Tests.dll -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/EmailService.Tests.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/EmailService.Tests.pdb -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/EmailService.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/EmailService.deps.json -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/EmailService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/EmailService.dll -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/EmailService.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/EmailService.pdb -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/EmailService.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/EmailService.runtimeconfig.json -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/MailKit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/MailKit.dll -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/MassTransit.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/MassTransit.Abstractions.dll -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/MassTransit.RabbitMqTransport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/MassTransit.RabbitMqTransport.dll -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/MassTransit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/MassTransit.dll -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/Microsoft.AspNetCore.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/Microsoft.AspNetCore.OpenApi.dll -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/Microsoft.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/Microsoft.OpenApi.dll -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/MimeKit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/MimeKit.dll -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/Moq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/Moq.dll -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/NuGet.Frameworks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/NuGet.Frameworks.dll -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/RabbitMQ.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/RabbitMQ.Client.dll -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/Serilog.AspNetCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/Serilog.AspNetCore.dll -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/Serilog.Enrichers.Environment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/Serilog.Enrichers.Environment.dll -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/Serilog.Extensions.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/Serilog.Extensions.Hosting.dll -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/Serilog.Extensions.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/Serilog.Extensions.Logging.dll -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/Serilog.Formatting.Compact.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/Serilog.Formatting.Compact.dll -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/Serilog.Settings.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/Serilog.Settings.Configuration.dll -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/Serilog.Sinks.Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/Serilog.Sinks.Console.dll -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/Serilog.Sinks.Debug.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/Serilog.Sinks.Debug.dll -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/Serilog.Sinks.Elasticsearch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/Serilog.Sinks.Elasticsearch.dll -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/Serilog.Sinks.File.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/Serilog.Sinks.File.dll -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/Serilog.Sinks.PeriodicBatching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/Serilog.Sinks.PeriodicBatching.dll -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/Serilog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/Serilog.dll -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/Swashbuckle.AspNetCore.Swagger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/Swashbuckle.AspNetCore.Swagger.dll -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/System.Text.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/System.Text.Json.dll -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/appsettings.Development.json -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/appsettings.development.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/appsettings.development.test.json -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/appsettings.json -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/appsettings.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/appsettings.test.json -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/testhost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/testhost.dll -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/xunit.abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/xunit.abstractions.dll -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/xunit.assert.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/xunit.assert.dll -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/xunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/xunit.core.dll -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/bin/Debug/net7.0/xunit.execution.dotnet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/bin/Debug/net7.0/xunit.execution.dotnet.dll -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/obj/Debug/net7.0/EmailService.Tests.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/obj/Debug/net7.0/EmailService.Tests.AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/obj/Debug/net7.0/EmailService.Tests.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 60bfe10588d6fefb35ab21849f48470c5087a430 2 | -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/obj/Debug/net7.0/EmailService.Tests.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/obj/Debug/net7.0/EmailService.Tests.assets.cache -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/obj/Debug/net7.0/EmailService.Tests.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/obj/Debug/net7.0/EmailService.Tests.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 4e08d719cab2ae64e3cd2236a673777acec4d9b5 2 | -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/obj/Debug/net7.0/EmailService.Tests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/obj/Debug/net7.0/EmailService.Tests.dll -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/obj/Debug/net7.0/EmailService.Tests.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 927c3cbde7a8c6360727e02fa7e5cdf4b5fa23c1 2 | -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/obj/Debug/net7.0/EmailService.Tests.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/obj/Debug/net7.0/EmailService.Tests.pdb -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/obj/Debug/net7.0/ref/EmailService.Tests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/obj/Debug/net7.0/ref/EmailService.Tests.dll -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/obj/Debug/net7.0/refint/EmailService.Tests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/obj/Debug/net7.0/refint/EmailService.Tests.dll -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/obj/EmailService.Tests.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/obj/EmailService.Tests.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/obj/EmailService.Tests.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/obj/EmailService.Tests.csproj.nuget.g.props -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/obj/EmailService.Tests.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/obj/EmailService.Tests.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/obj/project.assets.json -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/obj/project.nuget.cache -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/obj/project.packagespec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/EmailService.Tests/obj/project.packagespec.json -------------------------------------------------------------------------------- /Tests/Services/EmailService.Tests/obj/rider.project.restore.info: -------------------------------------------------------------------------------- 1 | 16951451038829399 -------------------------------------------------------------------------------- /Tests/Services/PushNotification.Tests/PushNotification.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/PushNotification.Tests/PushNotification.Tests.csproj -------------------------------------------------------------------------------- /Tests/Services/PushNotification.Tests/Usings.cs: -------------------------------------------------------------------------------- 1 | global using Xunit; -------------------------------------------------------------------------------- /Tests/Services/PushNotification.Tests/bin/Debug/net7.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/PushNotification.Tests/bin/Debug/net7.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Tests/Services/PushNotification.Tests/bin/Debug/net7.0/NuGet.Frameworks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/PushNotification.Tests/bin/Debug/net7.0/NuGet.Frameworks.dll -------------------------------------------------------------------------------- /Tests/Services/PushNotification.Tests/bin/Debug/net7.0/PushNotification.Tests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/PushNotification.Tests/bin/Debug/net7.0/PushNotification.Tests.dll -------------------------------------------------------------------------------- /Tests/Services/PushNotification.Tests/bin/Debug/net7.0/PushNotification.Tests.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/PushNotification.Tests/bin/Debug/net7.0/PushNotification.Tests.pdb -------------------------------------------------------------------------------- /Tests/Services/PushNotification.Tests/bin/Debug/net7.0/testhost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/PushNotification.Tests/bin/Debug/net7.0/testhost.dll -------------------------------------------------------------------------------- /Tests/Services/PushNotification.Tests/bin/Debug/net7.0/xunit.abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/PushNotification.Tests/bin/Debug/net7.0/xunit.abstractions.dll -------------------------------------------------------------------------------- /Tests/Services/PushNotification.Tests/bin/Debug/net7.0/xunit.assert.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/PushNotification.Tests/bin/Debug/net7.0/xunit.assert.dll -------------------------------------------------------------------------------- /Tests/Services/PushNotification.Tests/bin/Debug/net7.0/xunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/PushNotification.Tests/bin/Debug/net7.0/xunit.core.dll -------------------------------------------------------------------------------- /Tests/Services/PushNotification.Tests/bin/Debug/net7.0/xunit.execution.dotnet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/PushNotification.Tests/bin/Debug/net7.0/xunit.execution.dotnet.dll -------------------------------------------------------------------------------- /Tests/Services/PushNotification.Tests/obj/Debug/net7.0/PushNotification.Tests.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 552377fb8616539c3ad9cd847e6aeac718dfe1e7 2 | -------------------------------------------------------------------------------- /Tests/Services/PushNotification.Tests/obj/Debug/net7.0/PushNotification.Tests.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tests/Services/PushNotification.Tests/obj/Debug/net7.0/PushNotification.Tests.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | c213df9b0ba8015489af3e03851e56bd917d353b 2 | -------------------------------------------------------------------------------- /Tests/Services/PushNotification.Tests/obj/Debug/net7.0/PushNotification.Tests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/PushNotification.Tests/obj/Debug/net7.0/PushNotification.Tests.dll -------------------------------------------------------------------------------- /Tests/Services/PushNotification.Tests/obj/Debug/net7.0/PushNotification.Tests.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 99c54820ebc6de943e3b4a7650c18be21918a6fc 2 | -------------------------------------------------------------------------------- /Tests/Services/PushNotification.Tests/obj/Debug/net7.0/PushNotification.Tests.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/PushNotification.Tests/obj/Debug/net7.0/PushNotification.Tests.pdb -------------------------------------------------------------------------------- /Tests/Services/PushNotification.Tests/obj/Debug/net7.0/ref/PushNotification.Tests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/PushNotification.Tests/obj/Debug/net7.0/ref/PushNotification.Tests.dll -------------------------------------------------------------------------------- /Tests/Services/PushNotification.Tests/obj/PushNotification.Tests.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/PushNotification.Tests/obj/PushNotification.Tests.csproj.nuget.g.props -------------------------------------------------------------------------------- /Tests/Services/PushNotification.Tests/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/PushNotification.Tests/obj/project.assets.json -------------------------------------------------------------------------------- /Tests/Services/PushNotification.Tests/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/PushNotification.Tests/obj/project.nuget.cache -------------------------------------------------------------------------------- /Tests/Services/PushNotification.Tests/obj/project.packagespec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/PushNotification.Tests/obj/project.packagespec.json -------------------------------------------------------------------------------- /Tests/Services/PushNotification.Tests/obj/rider.project.restore.info: -------------------------------------------------------------------------------- 1 | 16951451038772917 -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/ApplicationCore/Services/KavenegarProvider.Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/ApplicationCore/Services/KavenegarProvider.Tests.cs -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/ApplicationCore/Services/SmsService.Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/ApplicationCore/Services/SmsService.Tests.cs -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/SmsService.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/SmsService.Tests.csproj -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/TestData/TestDataGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/TestData/TestDataGenerator.cs -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/Usings.cs: -------------------------------------------------------------------------------- 1 | global using Xunit; -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/appsettings.Development.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/appsettings.Development.test.json -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/appsettings.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/appsettings.test.json -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/Castle.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/Castle.Core.dll -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/CoverletSourceRootsMapping: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/CoverletSourceRootsMapping -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/Elasticsearch.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/Elasticsearch.Net.dll -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/Kavenegar.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/Kavenegar.Core.dll -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/MassTransit.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/MassTransit.Abstractions.dll -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/MassTransit.AspNetCoreIntegration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/MassTransit.AspNetCoreIntegration.dll -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/MassTransit.RabbitMqTransport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/MassTransit.RabbitMqTransport.dll -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/MassTransit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/MassTransit.dll -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/Microsoft.AspNetCore.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/Microsoft.AspNetCore.OpenApi.dll -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/Microsoft.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/Microsoft.OpenApi.dll -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/Microsoft.TestPlatform.Utilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/Microsoft.TestPlatform.Utilities.dll -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/Moq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/Moq.dll -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/NuGet.Frameworks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/NuGet.Frameworks.dll -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/RabbitMQ.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/RabbitMQ.Client.dll -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/Serilog.AspNetCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/Serilog.AspNetCore.dll -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/Serilog.Enrichers.Environment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/Serilog.Enrichers.Environment.dll -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/Serilog.Extensions.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/Serilog.Extensions.Hosting.dll -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/Serilog.Extensions.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/Serilog.Extensions.Logging.dll -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/Serilog.Formatting.Compact.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/Serilog.Formatting.Compact.dll -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/Serilog.Formatting.Elasticsearch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/Serilog.Formatting.Elasticsearch.dll -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/Serilog.Settings.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/Serilog.Settings.Configuration.dll -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/Serilog.Sinks.Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/Serilog.Sinks.Console.dll -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/Serilog.Sinks.Debug.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/Serilog.Sinks.Debug.dll -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/Serilog.Sinks.Elasticsearch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/Serilog.Sinks.Elasticsearch.dll -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/Serilog.Sinks.File.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/Serilog.Sinks.File.dll -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/Serilog.Sinks.PeriodicBatching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/Serilog.Sinks.PeriodicBatching.dll -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/Serilog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/Serilog.dll -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/SmsContract.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/SmsContract.dll -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/SmsContract.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/SmsContract.pdb -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/SmsService: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/SmsService -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/SmsService.Tests.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/SmsService.Tests.deps.json -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/SmsService.Tests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/SmsService.Tests.dll -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/SmsService.Tests.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/SmsService.Tests.pdb -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/SmsService.Tests.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/SmsService.Tests.runtimeconfig.json -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/SmsService.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/SmsService.deps.json -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/SmsService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/SmsService.dll -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/SmsService.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/SmsService.pdb -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/SmsService.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/SmsService.runtimeconfig.json -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/SmsServiceTests.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/SmsServiceTests.deps.json -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/SmsServiceTests.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/SmsServiceTests.runtimeconfig.json -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/Swashbuckle.AspNetCore.Swagger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/Swashbuckle.AspNetCore.Swagger.dll -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/System.Text.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/System.Text.Json.dll -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/appsettings.Development.json -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/appsettings.json -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/testhost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/testhost.dll -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/xunit.abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/xunit.abstractions.dll -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/xunit.assert.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/xunit.assert.dll -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/xunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/xunit.core.dll -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/xunit.execution.dotnet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/xunit.execution.dotnet.dll -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/bin/Debug/net7.0/xunit.runner.utility.netcoreapp10.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/bin/Debug/net7.0/xunit.runner.utility.netcoreapp10.dll -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/obj/Debug/net7.0/SmsService.Tests.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/obj/Debug/net7.0/SmsService.Tests.AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/obj/Debug/net7.0/SmsService.Tests.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 1d21a75b8178599956c3a7c65cbce018e5f88962 2 | -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/obj/Debug/net7.0/SmsService.Tests.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/obj/Debug/net7.0/SmsService.Tests.GlobalUsings.g.cs -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/obj/Debug/net7.0/SmsService.Tests.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/obj/Debug/net7.0/SmsService.Tests.assets.cache -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/obj/Debug/net7.0/SmsService.Tests.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/obj/Debug/net7.0/SmsService.Tests.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | cb0be02cb968f10cc4c6d951dc5f779c0e1ae744 2 | -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/obj/Debug/net7.0/SmsService.Tests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/obj/Debug/net7.0/SmsService.Tests.dll -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/obj/Debug/net7.0/SmsService.Tests.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 5a7f2c1de3a716da18072ee9f7ddd3546d554dcb 2 | -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/obj/Debug/net7.0/SmsService.Tests.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/obj/Debug/net7.0/SmsService.Tests.pdb -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/obj/Debug/net7.0/SmsServiceTests.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/obj/Debug/net7.0/SmsServiceTests.AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/obj/Debug/net7.0/SmsServiceTests.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 39338809f04f8ad1e8d12bf6c877805a7cf24c78 2 | -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/obj/Debug/net7.0/SmsServiceTests.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/obj/Debug/net7.0/SmsServiceTests.GlobalUsings.g.cs -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/obj/Debug/net7.0/SmsServiceTests.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/obj/Debug/net7.0/SmsServiceTests.assets.cache -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/obj/Debug/net7.0/SmsServiceTests.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/obj/Debug/net7.0/SmsServiceTests.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 63fcc63f422798460b0f12a0e7d1fec9cf2df13b 2 | -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/obj/Debug/net7.0/SmsServiceTests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/obj/Debug/net7.0/SmsServiceTests.dll -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/obj/Debug/net7.0/SmsServiceTests.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/obj/Debug/net7.0/SmsServiceTests.pdb -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/obj/Debug/net7.0/ref/SmsService.Tests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/obj/Debug/net7.0/ref/SmsService.Tests.dll -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/obj/Debug/net7.0/ref/SmsServiceTests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/obj/Debug/net7.0/ref/SmsServiceTests.dll -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/obj/Debug/net7.0/refint/SmsService.Tests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/obj/Debug/net7.0/refint/SmsService.Tests.dll -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/obj/Debug/net7.0/refint/SmsServiceTests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/obj/Debug/net7.0/refint/SmsServiceTests.dll -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/obj/SmsService.Tests.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/obj/SmsService.Tests.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/obj/SmsService.Tests.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/obj/SmsService.Tests.csproj.nuget.g.props -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/obj/SmsService.Tests.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/obj/SmsService.Tests.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/obj/SmsServiceTests.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/obj/SmsServiceTests.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/obj/SmsServiceTests.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/obj/SmsServiceTests.csproj.nuget.g.props -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/obj/SmsServiceTests.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/obj/SmsServiceTests.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/obj/project.assets.json -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/obj/project.nuget.cache -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/obj/project.packagespec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/Tests/Services/SmsService.Tests/obj/project.packagespec.json -------------------------------------------------------------------------------- /Tests/Services/SmsService.Tests/obj/rider.project.restore.info: -------------------------------------------------------------------------------- 1 | 16951451038801867 -------------------------------------------------------------------------------- /src/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/.dockerignore -------------------------------------------------------------------------------- /src/.idea/.idea.NotificationService/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/.idea/.idea.NotificationService/.idea/.gitignore -------------------------------------------------------------------------------- /src/.idea/.idea.NotificationService/.idea/.name: -------------------------------------------------------------------------------- 1 | NotificationService -------------------------------------------------------------------------------- /src/.idea/.idea.NotificationService/.idea/indexLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/.idea/.idea.NotificationService/.idea/indexLayout.xml -------------------------------------------------------------------------------- /src/.idea/.idea.NotificationService/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/.idea/.idea.NotificationService/.idea/vcs.xml -------------------------------------------------------------------------------- /src/Contracts/EmailContract/EmailContract.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/EmailContract/EmailContract.csproj -------------------------------------------------------------------------------- /src/Contracts/EmailContract/Models/SendEmailRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/EmailContract/Models/SendEmailRequest.cs -------------------------------------------------------------------------------- /src/Contracts/EmailContract/bin/Debug/net7.0/EmailContract.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/EmailContract/bin/Debug/net7.0/EmailContract.deps.json -------------------------------------------------------------------------------- /src/Contracts/EmailContract/bin/Debug/net7.0/EmailContract.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/EmailContract/bin/Debug/net7.0/EmailContract.dll -------------------------------------------------------------------------------- /src/Contracts/EmailContract/bin/Debug/net7.0/EmailContract.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/EmailContract/bin/Debug/net7.0/EmailContract.pdb -------------------------------------------------------------------------------- /src/Contracts/EmailContract/obj/Debug/net7.0/EmailContract.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/EmailContract/obj/Debug/net7.0/EmailContract.AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Contracts/EmailContract/obj/Debug/net7.0/EmailContract.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | da4a3f193873f6e17828b6e5580378a3457f3459 2 | -------------------------------------------------------------------------------- /src/Contracts/EmailContract/obj/Debug/net7.0/EmailContract.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/EmailContract/obj/Debug/net7.0/EmailContract.GlobalUsings.g.cs -------------------------------------------------------------------------------- /src/Contracts/EmailContract/obj/Debug/net7.0/EmailContract.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/EmailContract/obj/Debug/net7.0/EmailContract.assets.cache -------------------------------------------------------------------------------- /src/Contracts/EmailContract/obj/Debug/net7.0/EmailContract.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | f42ecb5bd71f3b86fd7f94a15a22f331e13eb4cf 2 | -------------------------------------------------------------------------------- /src/Contracts/EmailContract/obj/Debug/net7.0/EmailContract.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/EmailContract/obj/Debug/net7.0/EmailContract.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /src/Contracts/EmailContract/obj/Debug/net7.0/EmailContract.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/EmailContract/obj/Debug/net7.0/EmailContract.dll -------------------------------------------------------------------------------- /src/Contracts/EmailContract/obj/Debug/net7.0/EmailContract.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/EmailContract/obj/Debug/net7.0/EmailContract.pdb -------------------------------------------------------------------------------- /src/Contracts/EmailContract/obj/Debug/net7.0/ref/EmailContract.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/EmailContract/obj/Debug/net7.0/ref/EmailContract.dll -------------------------------------------------------------------------------- /src/Contracts/EmailContract/obj/Debug/net7.0/refint/EmailContract.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/EmailContract/obj/Debug/net7.0/refint/EmailContract.dll -------------------------------------------------------------------------------- /src/Contracts/EmailContract/obj/EmailContract.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/EmailContract/obj/EmailContract.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /src/Contracts/EmailContract/obj/EmailContract.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/EmailContract/obj/EmailContract.csproj.nuget.g.props -------------------------------------------------------------------------------- /src/Contracts/EmailContract/obj/EmailContract.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/EmailContract/obj/EmailContract.csproj.nuget.g.targets -------------------------------------------------------------------------------- /src/Contracts/EmailContract/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/EmailContract/obj/project.assets.json -------------------------------------------------------------------------------- /src/Contracts/EmailContract/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/EmailContract/obj/project.nuget.cache -------------------------------------------------------------------------------- /src/Contracts/EmailContract/obj/project.packagespec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/EmailContract/obj/project.packagespec.json -------------------------------------------------------------------------------- /src/Contracts/EmailContract/obj/rider.project.restore.info: -------------------------------------------------------------------------------- 1 | 16951451038553221 -------------------------------------------------------------------------------- /src/Contracts/NotificationContract/Enums/NotificationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/NotificationContract/Enums/NotificationType.cs -------------------------------------------------------------------------------- /src/Contracts/NotificationContract/Models/SendNotificationRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/NotificationContract/Models/SendNotificationRequest.cs -------------------------------------------------------------------------------- /src/Contracts/NotificationContract/NotificationContract.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/NotificationContract/NotificationContract.csproj -------------------------------------------------------------------------------- /src/Contracts/NotificationContract/bin/Debug/net7.0/EmailContract.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/NotificationContract/bin/Debug/net7.0/EmailContract.dll -------------------------------------------------------------------------------- /src/Contracts/NotificationContract/bin/Debug/net7.0/EmailContract.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/NotificationContract/bin/Debug/net7.0/EmailContract.pdb -------------------------------------------------------------------------------- /src/Contracts/NotificationContract/bin/Debug/net7.0/NotificationContract.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/NotificationContract/bin/Debug/net7.0/NotificationContract.deps.json -------------------------------------------------------------------------------- /src/Contracts/NotificationContract/bin/Debug/net7.0/NotificationContract.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/NotificationContract/bin/Debug/net7.0/NotificationContract.dll -------------------------------------------------------------------------------- /src/Contracts/NotificationContract/bin/Debug/net7.0/NotificationContract.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/NotificationContract/bin/Debug/net7.0/NotificationContract.pdb -------------------------------------------------------------------------------- /src/Contracts/NotificationContract/bin/Debug/net7.0/PushNotificationContract.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/NotificationContract/bin/Debug/net7.0/PushNotificationContract.dll -------------------------------------------------------------------------------- /src/Contracts/NotificationContract/bin/Debug/net7.0/PushNotificationContract.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/NotificationContract/bin/Debug/net7.0/PushNotificationContract.pdb -------------------------------------------------------------------------------- /src/Contracts/NotificationContract/bin/Debug/net7.0/SmsContract.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/NotificationContract/bin/Debug/net7.0/SmsContract.dll -------------------------------------------------------------------------------- /src/Contracts/NotificationContract/bin/Debug/net7.0/SmsContract.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/NotificationContract/bin/Debug/net7.0/SmsContract.pdb -------------------------------------------------------------------------------- /src/Contracts/NotificationContract/obj/Debug/net7.0/NotificationContract.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 32f91fd1e9f421f078019a6a0e764d7d2afbdc70 2 | -------------------------------------------------------------------------------- /src/Contracts/NotificationContract/obj/Debug/net7.0/NotificationContract.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/NotificationContract/obj/Debug/net7.0/NotificationContract.assets.cache -------------------------------------------------------------------------------- /src/Contracts/NotificationContract/obj/Debug/net7.0/NotificationContract.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Contracts/NotificationContract/obj/Debug/net7.0/NotificationContract.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 23972f3fc5945c0da020352c753d0eafb2c2c32b 2 | -------------------------------------------------------------------------------- /src/Contracts/NotificationContract/obj/Debug/net7.0/NotificationContract.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/NotificationContract/obj/Debug/net7.0/NotificationContract.dll -------------------------------------------------------------------------------- /src/Contracts/NotificationContract/obj/Debug/net7.0/NotificationContract.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/NotificationContract/obj/Debug/net7.0/NotificationContract.pdb -------------------------------------------------------------------------------- /src/Contracts/NotificationContract/obj/Debug/net7.0/ref/NotificationContract.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/NotificationContract/obj/Debug/net7.0/ref/NotificationContract.dll -------------------------------------------------------------------------------- /src/Contracts/NotificationContract/obj/Debug/net7.0/refint/NotificationContract.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/NotificationContract/obj/Debug/net7.0/refint/NotificationContract.dll -------------------------------------------------------------------------------- /src/Contracts/NotificationContract/obj/NotificationContract.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/NotificationContract/obj/NotificationContract.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /src/Contracts/NotificationContract/obj/NotificationContract.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/NotificationContract/obj/NotificationContract.csproj.nuget.g.props -------------------------------------------------------------------------------- /src/Contracts/NotificationContract/obj/NotificationContract.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/NotificationContract/obj/NotificationContract.csproj.nuget.g.targets -------------------------------------------------------------------------------- /src/Contracts/NotificationContract/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/NotificationContract/obj/project.assets.json -------------------------------------------------------------------------------- /src/Contracts/NotificationContract/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/NotificationContract/obj/project.nuget.cache -------------------------------------------------------------------------------- /src/Contracts/NotificationContract/obj/project.packagespec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/NotificationContract/obj/project.packagespec.json -------------------------------------------------------------------------------- /src/Contracts/NotificationContract/obj/rider.project.restore.info: -------------------------------------------------------------------------------- 1 | 16951451037853636 -------------------------------------------------------------------------------- /src/Contracts/PushNotificationContract/Models/SendPushMessageRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/PushNotificationContract/Models/SendPushMessageRequest.cs -------------------------------------------------------------------------------- /src/Contracts/PushNotificationContract/PushNotificationContract.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/PushNotificationContract/PushNotificationContract.csproj -------------------------------------------------------------------------------- /src/Contracts/PushNotificationContract/bin/Debug/net7.0/PushNotificationContract.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/PushNotificationContract/bin/Debug/net7.0/PushNotificationContract.dll -------------------------------------------------------------------------------- /src/Contracts/PushNotificationContract/bin/Debug/net7.0/PushNotificationContract.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/PushNotificationContract/bin/Debug/net7.0/PushNotificationContract.pdb -------------------------------------------------------------------------------- /src/Contracts/PushNotificationContract/obj/Debug/net7.0/PushNotificationContract.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | fea43265a20a03a518cd885f3321b695496a8eb6 2 | -------------------------------------------------------------------------------- /src/Contracts/PushNotificationContract/obj/Debug/net7.0/PushNotificationContract.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 36005646fafc8b5e4323b7f528de089f9272bd67 2 | -------------------------------------------------------------------------------- /src/Contracts/PushNotificationContract/obj/Debug/net7.0/PushNotificationContract.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/PushNotificationContract/obj/Debug/net7.0/PushNotificationContract.dll -------------------------------------------------------------------------------- /src/Contracts/PushNotificationContract/obj/Debug/net7.0/PushNotificationContract.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/PushNotificationContract/obj/Debug/net7.0/PushNotificationContract.pdb -------------------------------------------------------------------------------- /src/Contracts/PushNotificationContract/obj/Debug/net7.0/PushNotificationContracts.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 86acbb743ea4cae3ad000fba206deb8b393ad36e 2 | -------------------------------------------------------------------------------- /src/Contracts/PushNotificationContract/obj/Debug/net7.0/PushNotificationContracts.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 433e98508e05d49b7b7635752bfd37f3aba1bc44 2 | -------------------------------------------------------------------------------- /src/Contracts/PushNotificationContract/obj/Debug/net7.0/PushNotificationContracts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/PushNotificationContract/obj/Debug/net7.0/PushNotificationContracts.dll -------------------------------------------------------------------------------- /src/Contracts/PushNotificationContract/obj/Debug/net7.0/PushNotificationContracts.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/PushNotificationContract/obj/Debug/net7.0/PushNotificationContracts.pdb -------------------------------------------------------------------------------- /src/Contracts/PushNotificationContract/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/PushNotificationContract/obj/project.assets.json -------------------------------------------------------------------------------- /src/Contracts/PushNotificationContract/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/PushNotificationContract/obj/project.nuget.cache -------------------------------------------------------------------------------- /src/Contracts/PushNotificationContract/obj/project.packagespec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/PushNotificationContract/obj/project.packagespec.json -------------------------------------------------------------------------------- /src/Contracts/PushNotificationContract/obj/rider.project.restore.info: -------------------------------------------------------------------------------- 1 | 16951451037841215 -------------------------------------------------------------------------------- /src/Contracts/SmsContract/Enums/Provider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/SmsContract/Enums/Provider.cs -------------------------------------------------------------------------------- /src/Contracts/SmsContract/Models/SendSmsRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/SmsContract/Models/SendSmsRequest.cs -------------------------------------------------------------------------------- /src/Contracts/SmsContract/Models/SendSmsResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/SmsContract/Models/SendSmsResponse.cs -------------------------------------------------------------------------------- /src/Contracts/SmsContract/SmsContract.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/SmsContract/SmsContract.csproj -------------------------------------------------------------------------------- /src/Contracts/SmsContract/bin/Debug/net7.0/SmsContract.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/SmsContract/bin/Debug/net7.0/SmsContract.deps.json -------------------------------------------------------------------------------- /src/Contracts/SmsContract/bin/Debug/net7.0/SmsContract.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/SmsContract/bin/Debug/net7.0/SmsContract.dll -------------------------------------------------------------------------------- /src/Contracts/SmsContract/bin/Debug/net7.0/SmsContract.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/SmsContract/bin/Debug/net7.0/SmsContract.pdb -------------------------------------------------------------------------------- /src/Contracts/SmsContract/obj/Debug/net7.0/SmsContact.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/SmsContract/obj/Debug/net7.0/SmsContact.AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Contracts/SmsContract/obj/Debug/net7.0/SmsContact.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 0b3cdf75d287327396d0c78596eb8fe052501917 2 | -------------------------------------------------------------------------------- /src/Contracts/SmsContract/obj/Debug/net7.0/SmsContact.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/SmsContract/obj/Debug/net7.0/SmsContact.GlobalUsings.g.cs -------------------------------------------------------------------------------- /src/Contracts/SmsContract/obj/Debug/net7.0/SmsContact.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/SmsContract/obj/Debug/net7.0/SmsContact.assets.cache -------------------------------------------------------------------------------- /src/Contracts/SmsContract/obj/Debug/net7.0/SmsContact.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/SmsContract/obj/Debug/net7.0/SmsContact.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /src/Contracts/SmsContract/obj/Debug/net7.0/SmsContract.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/SmsContract/obj/Debug/net7.0/SmsContract.AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Contracts/SmsContract/obj/Debug/net7.0/SmsContract.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 52cfb80120bf8e48f686c2ba494d529b696f900b 2 | -------------------------------------------------------------------------------- /src/Contracts/SmsContract/obj/Debug/net7.0/SmsContract.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/SmsContract/obj/Debug/net7.0/SmsContract.GlobalUsings.g.cs -------------------------------------------------------------------------------- /src/Contracts/SmsContract/obj/Debug/net7.0/SmsContract.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/SmsContract/obj/Debug/net7.0/SmsContract.assets.cache -------------------------------------------------------------------------------- /src/Contracts/SmsContract/obj/Debug/net7.0/SmsContract.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/SmsContract/obj/Debug/net7.0/SmsContract.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /src/Contracts/SmsContract/obj/Debug/net7.0/SmsContract.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | bab769f956eac59b54a75c38e0541c00056577f0 2 | -------------------------------------------------------------------------------- /src/Contracts/SmsContract/obj/Debug/net7.0/SmsContract.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/SmsContract/obj/Debug/net7.0/SmsContract.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /src/Contracts/SmsContract/obj/Debug/net7.0/SmsContract.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/SmsContract/obj/Debug/net7.0/SmsContract.dll -------------------------------------------------------------------------------- /src/Contracts/SmsContract/obj/Debug/net7.0/SmsContract.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/SmsContract/obj/Debug/net7.0/SmsContract.pdb -------------------------------------------------------------------------------- /src/Contracts/SmsContract/obj/Debug/net7.0/SmsServiceContact.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/SmsContract/obj/Debug/net7.0/SmsServiceContact.AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Contracts/SmsContract/obj/Debug/net7.0/SmsServiceContact.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | d6f1a755be0dada841dadc3192f807ceac008c9a 2 | -------------------------------------------------------------------------------- /src/Contracts/SmsContract/obj/Debug/net7.0/SmsServiceContact.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/SmsContract/obj/Debug/net7.0/SmsServiceContact.GlobalUsings.g.cs -------------------------------------------------------------------------------- /src/Contracts/SmsContract/obj/Debug/net7.0/SmsServiceContact.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/SmsContract/obj/Debug/net7.0/SmsServiceContact.assets.cache -------------------------------------------------------------------------------- /src/Contracts/SmsContract/obj/Debug/net7.0/ref/SmsContract.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/SmsContract/obj/Debug/net7.0/ref/SmsContract.dll -------------------------------------------------------------------------------- /src/Contracts/SmsContract/obj/Debug/net7.0/refint/SmsContract.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/SmsContract/obj/Debug/net7.0/refint/SmsContract.dll -------------------------------------------------------------------------------- /src/Contracts/SmsContract/obj/SmsContact.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/SmsContract/obj/SmsContact.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /src/Contracts/SmsContract/obj/SmsContact.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/SmsContract/obj/SmsContact.csproj.nuget.g.props -------------------------------------------------------------------------------- /src/Contracts/SmsContract/obj/SmsContact.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/SmsContract/obj/SmsContact.csproj.nuget.g.targets -------------------------------------------------------------------------------- /src/Contracts/SmsContract/obj/SmsContract.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/SmsContract/obj/SmsContract.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /src/Contracts/SmsContract/obj/SmsContract.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/SmsContract/obj/SmsContract.csproj.nuget.g.props -------------------------------------------------------------------------------- /src/Contracts/SmsContract/obj/SmsContract.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/SmsContract/obj/SmsContract.csproj.nuget.g.targets -------------------------------------------------------------------------------- /src/Contracts/SmsContract/obj/SmsServiceContact.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/SmsContract/obj/SmsServiceContact.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /src/Contracts/SmsContract/obj/SmsServiceContact.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/SmsContract/obj/SmsServiceContact.csproj.nuget.g.props -------------------------------------------------------------------------------- /src/Contracts/SmsContract/obj/SmsServiceContact.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/SmsContract/obj/SmsServiceContact.csproj.nuget.g.targets -------------------------------------------------------------------------------- /src/Contracts/SmsContract/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/SmsContract/obj/project.assets.json -------------------------------------------------------------------------------- /src/Contracts/SmsContract/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/SmsContract/obj/project.nuget.cache -------------------------------------------------------------------------------- /src/Contracts/SmsContract/obj/project.packagespec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Contracts/SmsContract/obj/project.packagespec.json -------------------------------------------------------------------------------- /src/Contracts/SmsContract/obj/rider.project.restore.info: -------------------------------------------------------------------------------- 1 | 16951451037779840 -------------------------------------------------------------------------------- /src/EmailService/obj/EmailService.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/EmailService/obj/EmailService.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /src/EmailService/obj/EmailService.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/EmailService/obj/EmailService.csproj.nuget.g.props -------------------------------------------------------------------------------- /src/EmailService/obj/EmailService.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/EmailService/obj/EmailService.csproj.nuget.g.targets -------------------------------------------------------------------------------- /src/EmailService/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/EmailService/obj/project.assets.json -------------------------------------------------------------------------------- /src/EmailService/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/EmailService/obj/project.nuget.cache -------------------------------------------------------------------------------- /src/NotificationService.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/NotificationService.sln -------------------------------------------------------------------------------- /src/NotificationService.sln.DotSettings.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/NotificationService.sln.DotSettings.user -------------------------------------------------------------------------------- /src/Services/EmailService/ApplicationCore/Interfaces/IEmailService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/ApplicationCore/Interfaces/IEmailService.cs -------------------------------------------------------------------------------- /src/Services/EmailService/ApplicationCore/Interfaces/ISmtpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/ApplicationCore/Interfaces/ISmtpClient.cs -------------------------------------------------------------------------------- /src/Services/EmailService/ApplicationCore/Mappers/RequestMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/ApplicationCore/Mappers/RequestMapper.cs -------------------------------------------------------------------------------- /src/Services/EmailService/ApplicationCore/Services/EmailService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/ApplicationCore/Services/EmailService.cs -------------------------------------------------------------------------------- /src/Services/EmailService/ApplicationCore/Services/SmtpClientService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/ApplicationCore/Services/SmtpClientService.cs -------------------------------------------------------------------------------- /src/Services/EmailService/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/Dockerfile -------------------------------------------------------------------------------- /src/Services/EmailService/EmailService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/EmailService.csproj -------------------------------------------------------------------------------- /src/Services/EmailService/Ioc/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/Ioc/Configuration.cs -------------------------------------------------------------------------------- /src/Services/EmailService/Ioc/Configurator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/Ioc/Configurator.cs -------------------------------------------------------------------------------- /src/Services/EmailService/Presentation/Consumers/EmailConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/Presentation/Consumers/EmailConsumer.cs -------------------------------------------------------------------------------- /src/Services/EmailService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/Program.cs -------------------------------------------------------------------------------- /src/Services/EmailService/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Services/EmailService/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/appsettings.Development.json -------------------------------------------------------------------------------- /src/Services/EmailService/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/appsettings.json -------------------------------------------------------------------------------- /src/Services/EmailService/bin/Debug/net7.0/BouncyCastle.Cryptography.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/bin/Debug/net7.0/BouncyCastle.Cryptography.dll -------------------------------------------------------------------------------- /src/Services/EmailService/bin/Debug/net7.0/Elasticsearch.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/bin/Debug/net7.0/Elasticsearch.Net.dll -------------------------------------------------------------------------------- /src/Services/EmailService/bin/Debug/net7.0/EmailContract.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/bin/Debug/net7.0/EmailContract.dll -------------------------------------------------------------------------------- /src/Services/EmailService/bin/Debug/net7.0/EmailContract.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/bin/Debug/net7.0/EmailContract.pdb -------------------------------------------------------------------------------- /src/Services/EmailService/bin/Debug/net7.0/EmailService: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/bin/Debug/net7.0/EmailService -------------------------------------------------------------------------------- /src/Services/EmailService/bin/Debug/net7.0/EmailService.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/bin/Debug/net7.0/EmailService.deps.json -------------------------------------------------------------------------------- /src/Services/EmailService/bin/Debug/net7.0/EmailService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/bin/Debug/net7.0/EmailService.dll -------------------------------------------------------------------------------- /src/Services/EmailService/bin/Debug/net7.0/EmailService.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/bin/Debug/net7.0/EmailService.pdb -------------------------------------------------------------------------------- /src/Services/EmailService/bin/Debug/net7.0/EmailService.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/bin/Debug/net7.0/EmailService.runtimeconfig.json -------------------------------------------------------------------------------- /src/Services/EmailService/bin/Debug/net7.0/MailKit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/bin/Debug/net7.0/MailKit.dll -------------------------------------------------------------------------------- /src/Services/EmailService/bin/Debug/net7.0/MassTransit.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/bin/Debug/net7.0/MassTransit.Abstractions.dll -------------------------------------------------------------------------------- /src/Services/EmailService/bin/Debug/net7.0/MassTransit.AspNetCoreIntegration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/bin/Debug/net7.0/MassTransit.AspNetCoreIntegration.dll -------------------------------------------------------------------------------- /src/Services/EmailService/bin/Debug/net7.0/MassTransit.RabbitMqTransport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/bin/Debug/net7.0/MassTransit.RabbitMqTransport.dll -------------------------------------------------------------------------------- /src/Services/EmailService/bin/Debug/net7.0/MassTransit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/bin/Debug/net7.0/MassTransit.dll -------------------------------------------------------------------------------- /src/Services/EmailService/bin/Debug/net7.0/Microsoft.AspNetCore.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/bin/Debug/net7.0/Microsoft.AspNetCore.OpenApi.dll -------------------------------------------------------------------------------- /src/Services/EmailService/bin/Debug/net7.0/Microsoft.Extensions.DependencyModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/bin/Debug/net7.0/Microsoft.Extensions.DependencyModel.dll -------------------------------------------------------------------------------- /src/Services/EmailService/bin/Debug/net7.0/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/bin/Debug/net7.0/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /src/Services/EmailService/bin/Debug/net7.0/Microsoft.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/bin/Debug/net7.0/Microsoft.OpenApi.dll -------------------------------------------------------------------------------- /src/Services/EmailService/bin/Debug/net7.0/MimeKit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/bin/Debug/net7.0/MimeKit.dll -------------------------------------------------------------------------------- /src/Services/EmailService/bin/Debug/net7.0/RabbitMQ.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/bin/Debug/net7.0/RabbitMQ.Client.dll -------------------------------------------------------------------------------- /src/Services/EmailService/bin/Debug/net7.0/Serilog.AspNetCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/bin/Debug/net7.0/Serilog.AspNetCore.dll -------------------------------------------------------------------------------- /src/Services/EmailService/bin/Debug/net7.0/Serilog.Enrichers.Environment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/bin/Debug/net7.0/Serilog.Enrichers.Environment.dll -------------------------------------------------------------------------------- /src/Services/EmailService/bin/Debug/net7.0/Serilog.Extensions.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/bin/Debug/net7.0/Serilog.Extensions.Hosting.dll -------------------------------------------------------------------------------- /src/Services/EmailService/bin/Debug/net7.0/Serilog.Extensions.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/bin/Debug/net7.0/Serilog.Extensions.Logging.dll -------------------------------------------------------------------------------- /src/Services/EmailService/bin/Debug/net7.0/Serilog.Formatting.Compact.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/bin/Debug/net7.0/Serilog.Formatting.Compact.dll -------------------------------------------------------------------------------- /src/Services/EmailService/bin/Debug/net7.0/Serilog.Formatting.Elasticsearch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/bin/Debug/net7.0/Serilog.Formatting.Elasticsearch.dll -------------------------------------------------------------------------------- /src/Services/EmailService/bin/Debug/net7.0/Serilog.Settings.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/bin/Debug/net7.0/Serilog.Settings.Configuration.dll -------------------------------------------------------------------------------- /src/Services/EmailService/bin/Debug/net7.0/Serilog.Sinks.Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/bin/Debug/net7.0/Serilog.Sinks.Console.dll -------------------------------------------------------------------------------- /src/Services/EmailService/bin/Debug/net7.0/Serilog.Sinks.Debug.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/bin/Debug/net7.0/Serilog.Sinks.Debug.dll -------------------------------------------------------------------------------- /src/Services/EmailService/bin/Debug/net7.0/Serilog.Sinks.Elasticsearch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/bin/Debug/net7.0/Serilog.Sinks.Elasticsearch.dll -------------------------------------------------------------------------------- /src/Services/EmailService/bin/Debug/net7.0/Serilog.Sinks.File.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/bin/Debug/net7.0/Serilog.Sinks.File.dll -------------------------------------------------------------------------------- /src/Services/EmailService/bin/Debug/net7.0/Serilog.Sinks.PeriodicBatching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/bin/Debug/net7.0/Serilog.Sinks.PeriodicBatching.dll -------------------------------------------------------------------------------- /src/Services/EmailService/bin/Debug/net7.0/Serilog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/bin/Debug/net7.0/Serilog.dll -------------------------------------------------------------------------------- /src/Services/EmailService/bin/Debug/net7.0/Swashbuckle.AspNetCore.Swagger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/bin/Debug/net7.0/Swashbuckle.AspNetCore.Swagger.dll -------------------------------------------------------------------------------- /src/Services/EmailService/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll -------------------------------------------------------------------------------- /src/Services/EmailService/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll -------------------------------------------------------------------------------- /src/Services/EmailService/bin/Debug/net7.0/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/bin/Debug/net7.0/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /src/Services/EmailService/bin/Debug/net7.0/System.Security.Cryptography.Pkcs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/bin/Debug/net7.0/System.Security.Cryptography.Pkcs.dll -------------------------------------------------------------------------------- /src/Services/EmailService/bin/Debug/net7.0/System.Text.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/bin/Debug/net7.0/System.Text.Json.dll -------------------------------------------------------------------------------- /src/Services/EmailService/bin/Debug/net7.0/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/bin/Debug/net7.0/appsettings.Development.json -------------------------------------------------------------------------------- /src/Services/EmailService/bin/Debug/net7.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/bin/Debug/net7.0/appsettings.json -------------------------------------------------------------------------------- /src/Services/EmailService/obj/Debug/net7.0/EmailService.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/obj/Debug/net7.0/EmailService.AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Services/EmailService/obj/Debug/net7.0/EmailService.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 9027403c2c7584b41e44d88536d015e6f1fff688 2 | -------------------------------------------------------------------------------- /src/Services/EmailService/obj/Debug/net7.0/EmailService.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/obj/Debug/net7.0/EmailService.GlobalUsings.g.cs -------------------------------------------------------------------------------- /src/Services/EmailService/obj/Debug/net7.0/EmailService.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Services/EmailService/obj/Debug/net7.0/EmailService.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/obj/Debug/net7.0/EmailService.assets.cache -------------------------------------------------------------------------------- /src/Services/EmailService/obj/Debug/net7.0/EmailService.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/obj/Debug/net7.0/EmailService.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /src/Services/EmailService/obj/Debug/net7.0/EmailService.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Services/EmailService/obj/Debug/net7.0/EmailService.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/obj/Debug/net7.0/EmailService.csproj.CoreCompileInputs.cache -------------------------------------------------------------------------------- /src/Services/EmailService/obj/Debug/net7.0/EmailService.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/obj/Debug/net7.0/EmailService.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /src/Services/EmailService/obj/Debug/net7.0/EmailService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/obj/Debug/net7.0/EmailService.dll -------------------------------------------------------------------------------- /src/Services/EmailService/obj/Debug/net7.0/EmailService.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | f7dec511f2f582fa8d018d46ffc69559d1ddea23 2 | -------------------------------------------------------------------------------- /src/Services/EmailService/obj/Debug/net7.0/EmailService.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/obj/Debug/net7.0/EmailService.pdb -------------------------------------------------------------------------------- /src/Services/EmailService/obj/Debug/net7.0/apphost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/obj/Debug/net7.0/apphost -------------------------------------------------------------------------------- /src/Services/EmailService/obj/Debug/net7.0/ref/EmailService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/obj/Debug/net7.0/ref/EmailService.dll -------------------------------------------------------------------------------- /src/Services/EmailService/obj/Debug/net7.0/refint/EmailService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/obj/Debug/net7.0/refint/EmailService.dll -------------------------------------------------------------------------------- /src/Services/EmailService/obj/Debug/net7.0/staticwebassets.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/obj/Debug/net7.0/staticwebassets.build.json -------------------------------------------------------------------------------- /src/Services/EmailService/obj/EmailService.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/obj/EmailService.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /src/Services/EmailService/obj/EmailService.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/obj/EmailService.csproj.nuget.g.props -------------------------------------------------------------------------------- /src/Services/EmailService/obj/EmailService.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/obj/EmailService.csproj.nuget.g.targets -------------------------------------------------------------------------------- /src/Services/EmailService/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/obj/project.assets.json -------------------------------------------------------------------------------- /src/Services/EmailService/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/obj/project.nuget.cache -------------------------------------------------------------------------------- /src/Services/EmailService/obj/project.packagespec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/EmailService/obj/project.packagespec.json -------------------------------------------------------------------------------- /src/Services/EmailService/obj/rider.project.restore.info: -------------------------------------------------------------------------------- 1 | 16951451038527188 -------------------------------------------------------------------------------- /src/Services/NotificationService/ApplicationCore/Interfaces/INotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/ApplicationCore/Interfaces/INotificationService.cs -------------------------------------------------------------------------------- /src/Services/NotificationService/ApplicationCore/Services/NotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/ApplicationCore/Services/NotificationService.cs -------------------------------------------------------------------------------- /src/Services/NotificationService/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/Dockerfile -------------------------------------------------------------------------------- /src/Services/NotificationService/Ioc/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/Ioc/Configuration.cs -------------------------------------------------------------------------------- /src/Services/NotificationService/Ioc/Configurator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/Ioc/Configurator.cs -------------------------------------------------------------------------------- /src/Services/NotificationService/NotificationService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/NotificationService.csproj -------------------------------------------------------------------------------- /src/Services/NotificationService/Presentation/Consumers/NotificationConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/Presentation/Consumers/NotificationConsumer.cs -------------------------------------------------------------------------------- /src/Services/NotificationService/Presentation/Controllers/NotificationController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/Presentation/Controllers/NotificationController.cs -------------------------------------------------------------------------------- /src/Services/NotificationService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/Program.cs -------------------------------------------------------------------------------- /src/Services/NotificationService/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Services/NotificationService/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/appsettings.Development.json -------------------------------------------------------------------------------- /src/Services/NotificationService/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/appsettings.json -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/BouncyCastle.Cryptography.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/BouncyCastle.Cryptography.dll -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/Elasticsearch.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/Elasticsearch.Net.dll -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/EmailContract.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/EmailContract.dll -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/EmailContract.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/EmailContract.pdb -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/FirebaseAdmin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/FirebaseAdmin.dll -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/Google.Api.Gax.Rest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/Google.Api.Gax.Rest.dll -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/Google.Api.Gax.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/Google.Api.Gax.dll -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/Google.Apis.Auth.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/Google.Apis.Auth.dll -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/Google.Apis.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/Google.Apis.Core.dll -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/Google.Apis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/Google.Apis.dll -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/MassTransit.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/MassTransit.Abstractions.dll -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/MassTransit.RabbitMqTransport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/MassTransit.RabbitMqTransport.dll -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/MassTransit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/MassTransit.dll -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/Microsoft.AspNetCore.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/Microsoft.AspNetCore.OpenApi.dll -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/Microsoft.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/Microsoft.OpenApi.dll -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/MimeKit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/MimeKit.dll -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/NotificationContract.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/NotificationContract.dll -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/NotificationContract.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/NotificationContract.pdb -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/NotificationService: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/NotificationService -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/NotificationService.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/NotificationService.deps.json -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/NotificationService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/NotificationService.dll -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/NotificationService.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/NotificationService.pdb -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/PushNotificationContract.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/PushNotificationContract.dll -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/PushNotificationContract.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/PushNotificationContract.pdb -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/RabbitMQ.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/RabbitMQ.Client.dll -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/Serilog.AspNetCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/Serilog.AspNetCore.dll -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/Serilog.Enrichers.Environment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/Serilog.Enrichers.Environment.dll -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/Serilog.Extensions.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/Serilog.Extensions.Hosting.dll -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/Serilog.Extensions.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/Serilog.Extensions.Logging.dll -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/Serilog.Formatting.Compact.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/Serilog.Formatting.Compact.dll -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/Serilog.Formatting.Elasticsearch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/Serilog.Formatting.Elasticsearch.dll -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/Serilog.Settings.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/Serilog.Settings.Configuration.dll -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/Serilog.Sinks.Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/Serilog.Sinks.Console.dll -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/Serilog.Sinks.Debug.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/Serilog.Sinks.Debug.dll -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/Serilog.Sinks.Elasticsearch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/Serilog.Sinks.Elasticsearch.dll -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/Serilog.Sinks.File.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/Serilog.Sinks.File.dll -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/Serilog.Sinks.PeriodicBatching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/Serilog.Sinks.PeriodicBatching.dll -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/Serilog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/Serilog.dll -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/SmsContract.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/SmsContract.dll -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/SmsContract.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/SmsContract.pdb -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/Swashbuckle.AspNetCore.Swagger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/Swashbuckle.AspNetCore.Swagger.dll -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/System.Text.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/System.Text.Json.dll -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/appsettings.Development.json -------------------------------------------------------------------------------- /src/Services/NotificationService/bin/Debug/net7.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/bin/Debug/net7.0/appsettings.json -------------------------------------------------------------------------------- /src/Services/NotificationService/obj/Debug/net7.0/NotificationService.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/obj/Debug/net7.0/NotificationService.AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Services/NotificationService/obj/Debug/net7.0/NotificationService.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | c94bf3fc3284dcf504d2f05339f68dfebcffbed8 2 | -------------------------------------------------------------------------------- /src/Services/NotificationService/obj/Debug/net7.0/NotificationService.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Services/NotificationService/obj/Debug/net7.0/NotificationService.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/obj/Debug/net7.0/NotificationService.assets.cache -------------------------------------------------------------------------------- /src/Services/NotificationService/obj/Debug/net7.0/NotificationService.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Services/NotificationService/obj/Debug/net7.0/NotificationService.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 2a8f0d6b583aada98ea90c09e1b3eb3be002dc3b 2 | -------------------------------------------------------------------------------- /src/Services/NotificationService/obj/Debug/net7.0/NotificationService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/obj/Debug/net7.0/NotificationService.dll -------------------------------------------------------------------------------- /src/Services/NotificationService/obj/Debug/net7.0/NotificationService.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/obj/Debug/net7.0/NotificationService.pdb -------------------------------------------------------------------------------- /src/Services/NotificationService/obj/Debug/net7.0/apphost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/obj/Debug/net7.0/apphost -------------------------------------------------------------------------------- /src/Services/NotificationService/obj/Debug/net7.0/ref/NotificationService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/obj/Debug/net7.0/ref/NotificationService.dll -------------------------------------------------------------------------------- /src/Services/NotificationService/obj/Debug/net7.0/refint/NotificationService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/obj/Debug/net7.0/refint/NotificationService.dll -------------------------------------------------------------------------------- /src/Services/NotificationService/obj/Debug/net7.0/staticwebassets.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/obj/Debug/net7.0/staticwebassets.build.json -------------------------------------------------------------------------------- /src/Services/NotificationService/obj/NotificationService.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/obj/NotificationService.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /src/Services/NotificationService/obj/NotificationService.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/obj/NotificationService.csproj.nuget.g.props -------------------------------------------------------------------------------- /src/Services/NotificationService/obj/NotificationService.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/obj/NotificationService.csproj.nuget.g.targets -------------------------------------------------------------------------------- /src/Services/NotificationService/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/obj/project.assets.json -------------------------------------------------------------------------------- /src/Services/NotificationService/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/obj/project.nuget.cache -------------------------------------------------------------------------------- /src/Services/NotificationService/obj/project.packagespec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/NotificationService/obj/project.packagespec.json -------------------------------------------------------------------------------- /src/Services/NotificationService/obj/rider.project.restore.info: -------------------------------------------------------------------------------- 1 | 16951451038477184 -------------------------------------------------------------------------------- /src/Services/PushNotificationService/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/Dockerfile -------------------------------------------------------------------------------- /src/Services/PushNotificationService/Ioc/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/Ioc/Configuration.cs -------------------------------------------------------------------------------- /src/Services/PushNotificationService/Ioc/Configurator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/Ioc/Configurator.cs -------------------------------------------------------------------------------- /src/Services/PushNotificationService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/Program.cs -------------------------------------------------------------------------------- /src/Services/PushNotificationService/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Services/PushNotificationService/PushNotificationService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/PushNotificationService.csproj -------------------------------------------------------------------------------- /src/Services/PushNotificationService/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/appsettings.Development.json -------------------------------------------------------------------------------- /src/Services/PushNotificationService/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/appsettings.json -------------------------------------------------------------------------------- /src/Services/PushNotificationService/bin/Debug/net7.0/Elasticsearch.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/bin/Debug/net7.0/Elasticsearch.Net.dll -------------------------------------------------------------------------------- /src/Services/PushNotificationService/bin/Debug/net7.0/FirebaseAdmin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/bin/Debug/net7.0/FirebaseAdmin.dll -------------------------------------------------------------------------------- /src/Services/PushNotificationService/bin/Debug/net7.0/Google.Api.Gax.Rest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/bin/Debug/net7.0/Google.Api.Gax.Rest.dll -------------------------------------------------------------------------------- /src/Services/PushNotificationService/bin/Debug/net7.0/Google.Api.Gax.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/bin/Debug/net7.0/Google.Api.Gax.dll -------------------------------------------------------------------------------- /src/Services/PushNotificationService/bin/Debug/net7.0/Google.Apis.Auth.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/bin/Debug/net7.0/Google.Apis.Auth.dll -------------------------------------------------------------------------------- /src/Services/PushNotificationService/bin/Debug/net7.0/Google.Apis.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/bin/Debug/net7.0/Google.Apis.Core.dll -------------------------------------------------------------------------------- /src/Services/PushNotificationService/bin/Debug/net7.0/Google.Apis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/bin/Debug/net7.0/Google.Apis.dll -------------------------------------------------------------------------------- /src/Services/PushNotificationService/bin/Debug/net7.0/MassTransit.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/bin/Debug/net7.0/MassTransit.Abstractions.dll -------------------------------------------------------------------------------- /src/Services/PushNotificationService/bin/Debug/net7.0/MassTransit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/bin/Debug/net7.0/MassTransit.dll -------------------------------------------------------------------------------- /src/Services/PushNotificationService/bin/Debug/net7.0/Microsoft.AspNetCore.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/bin/Debug/net7.0/Microsoft.AspNetCore.OpenApi.dll -------------------------------------------------------------------------------- /src/Services/PushNotificationService/bin/Debug/net7.0/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/bin/Debug/net7.0/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /src/Services/PushNotificationService/bin/Debug/net7.0/Microsoft.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/bin/Debug/net7.0/Microsoft.OpenApi.dll -------------------------------------------------------------------------------- /src/Services/PushNotificationService/bin/Debug/net7.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/bin/Debug/net7.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /src/Services/PushNotificationService/bin/Debug/net7.0/PushNotificationContract.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/bin/Debug/net7.0/PushNotificationContract.dll -------------------------------------------------------------------------------- /src/Services/PushNotificationService/bin/Debug/net7.0/PushNotificationContract.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/bin/Debug/net7.0/PushNotificationContract.pdb -------------------------------------------------------------------------------- /src/Services/PushNotificationService/bin/Debug/net7.0/PushNotificationService: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/bin/Debug/net7.0/PushNotificationService -------------------------------------------------------------------------------- /src/Services/PushNotificationService/bin/Debug/net7.0/PushNotificationService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/bin/Debug/net7.0/PushNotificationService.dll -------------------------------------------------------------------------------- /src/Services/PushNotificationService/bin/Debug/net7.0/PushNotificationService.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/bin/Debug/net7.0/PushNotificationService.pdb -------------------------------------------------------------------------------- /src/Services/PushNotificationService/bin/Debug/net7.0/RabbitMQ.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/bin/Debug/net7.0/RabbitMQ.Client.dll -------------------------------------------------------------------------------- /src/Services/PushNotificationService/bin/Debug/net7.0/Serilog.AspNetCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/bin/Debug/net7.0/Serilog.AspNetCore.dll -------------------------------------------------------------------------------- /src/Services/PushNotificationService/bin/Debug/net7.0/Serilog.Extensions.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/bin/Debug/net7.0/Serilog.Extensions.Hosting.dll -------------------------------------------------------------------------------- /src/Services/PushNotificationService/bin/Debug/net7.0/Serilog.Extensions.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/bin/Debug/net7.0/Serilog.Extensions.Logging.dll -------------------------------------------------------------------------------- /src/Services/PushNotificationService/bin/Debug/net7.0/Serilog.Formatting.Compact.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/bin/Debug/net7.0/Serilog.Formatting.Compact.dll -------------------------------------------------------------------------------- /src/Services/PushNotificationService/bin/Debug/net7.0/Serilog.Sinks.Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/bin/Debug/net7.0/Serilog.Sinks.Console.dll -------------------------------------------------------------------------------- /src/Services/PushNotificationService/bin/Debug/net7.0/Serilog.Sinks.Debug.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/bin/Debug/net7.0/Serilog.Sinks.Debug.dll -------------------------------------------------------------------------------- /src/Services/PushNotificationService/bin/Debug/net7.0/Serilog.Sinks.Elasticsearch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/bin/Debug/net7.0/Serilog.Sinks.Elasticsearch.dll -------------------------------------------------------------------------------- /src/Services/PushNotificationService/bin/Debug/net7.0/Serilog.Sinks.File.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/bin/Debug/net7.0/Serilog.Sinks.File.dll -------------------------------------------------------------------------------- /src/Services/PushNotificationService/bin/Debug/net7.0/Serilog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/bin/Debug/net7.0/Serilog.dll -------------------------------------------------------------------------------- /src/Services/PushNotificationService/bin/Debug/net7.0/System.Text.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/bin/Debug/net7.0/System.Text.Json.dll -------------------------------------------------------------------------------- /src/Services/PushNotificationService/bin/Debug/net7.0/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/bin/Debug/net7.0/appsettings.Development.json -------------------------------------------------------------------------------- /src/Services/PushNotificationService/bin/Debug/net7.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/bin/Debug/net7.0/appsettings.json -------------------------------------------------------------------------------- /src/Services/PushNotificationService/bin/Debug/net7.0/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/bin/Debug/net7.0/firebase.json -------------------------------------------------------------------------------- /src/Services/PushNotificationService/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/firebase.json -------------------------------------------------------------------------------- /src/Services/PushNotificationService/obj/Debug/net7.0/PushNotificationService.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Services/PushNotificationService/obj/Debug/net7.0/PushNotificationService.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Services/PushNotificationService/obj/Debug/net7.0/PushNotificationService.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 7e531bbe3ec884d4729f568a0255f10fd63f146e 2 | -------------------------------------------------------------------------------- /src/Services/PushNotificationService/obj/Debug/net7.0/PushNotificationService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/obj/Debug/net7.0/PushNotificationService.dll -------------------------------------------------------------------------------- /src/Services/PushNotificationService/obj/Debug/net7.0/PushNotificationService.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 6a1ee9edcefe993c617372b78f9c5c190adcf845 2 | -------------------------------------------------------------------------------- /src/Services/PushNotificationService/obj/Debug/net7.0/PushNotificationService.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/obj/Debug/net7.0/PushNotificationService.pdb -------------------------------------------------------------------------------- /src/Services/PushNotificationService/obj/Debug/net7.0/PushService.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/obj/Debug/net7.0/PushService.AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Services/PushNotificationService/obj/Debug/net7.0/PushService.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 9233e2efe5db1ec2accda755f963ad512d8031fb 2 | -------------------------------------------------------------------------------- /src/Services/PushNotificationService/obj/Debug/net7.0/PushService.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/obj/Debug/net7.0/PushService.GlobalUsings.g.cs -------------------------------------------------------------------------------- /src/Services/PushNotificationService/obj/Debug/net7.0/PushService.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/obj/Debug/net7.0/PushService.assets.cache -------------------------------------------------------------------------------- /src/Services/PushNotificationService/obj/Debug/net7.0/apphost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/obj/Debug/net7.0/apphost -------------------------------------------------------------------------------- /src/Services/PushNotificationService/obj/Debug/net7.0/ref/PushNotificationService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/obj/Debug/net7.0/ref/PushNotificationService.dll -------------------------------------------------------------------------------- /src/Services/PushNotificationService/obj/Debug/net7.0/staticwebassets.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/obj/Debug/net7.0/staticwebassets.build.json -------------------------------------------------------------------------------- /src/Services/PushNotificationService/obj/PushNotificationService.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/obj/PushNotificationService.csproj.nuget.g.props -------------------------------------------------------------------------------- /src/Services/PushNotificationService/obj/PushService.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/obj/PushService.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /src/Services/PushNotificationService/obj/PushService.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/obj/PushService.csproj.nuget.g.props -------------------------------------------------------------------------------- /src/Services/PushNotificationService/obj/PushService.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/obj/PushService.csproj.nuget.g.targets -------------------------------------------------------------------------------- /src/Services/PushNotificationService/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/obj/project.assets.json -------------------------------------------------------------------------------- /src/Services/PushNotificationService/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/obj/project.nuget.cache -------------------------------------------------------------------------------- /src/Services/PushNotificationService/obj/project.packagespec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/PushNotificationService/obj/project.packagespec.json -------------------------------------------------------------------------------- /src/Services/PushNotificationService/obj/rider.project.restore.info: -------------------------------------------------------------------------------- 1 | 16951451038594436 -------------------------------------------------------------------------------- /src/Services/SmsService/ApplicationCore/Interfaces/ISmsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/ApplicationCore/Interfaces/ISmsProvider.cs -------------------------------------------------------------------------------- /src/Services/SmsService/ApplicationCore/Interfaces/ISmsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/ApplicationCore/Interfaces/ISmsService.cs -------------------------------------------------------------------------------- /src/Services/SmsService/ApplicationCore/Services/KaveNegarProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/ApplicationCore/Services/KaveNegarProvider.cs -------------------------------------------------------------------------------- /src/Services/SmsService/ApplicationCore/Services/SendSmsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/ApplicationCore/Services/SendSmsService.cs -------------------------------------------------------------------------------- /src/Services/SmsService/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/Dockerfile -------------------------------------------------------------------------------- /src/Services/SmsService/Ioc/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/Ioc/Configuration.cs -------------------------------------------------------------------------------- /src/Services/SmsService/Ioc/Configurator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/Ioc/Configurator.cs -------------------------------------------------------------------------------- /src/Services/SmsService/Presentation/Consumers/SmsConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/Presentation/Consumers/SmsConsumer.cs -------------------------------------------------------------------------------- /src/Services/SmsService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/Program.cs -------------------------------------------------------------------------------- /src/Services/SmsService/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Services/SmsService/SmsService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/SmsService.csproj -------------------------------------------------------------------------------- /src/Services/SmsService/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/appsettings.Development.json -------------------------------------------------------------------------------- /src/Services/SmsService/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/appsettings.json -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/Elasticsearch.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/Elasticsearch.Net.dll -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/Kavenegar.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/Kavenegar.Core.dll -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/MassTransit.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/MassTransit.Abstractions.dll -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/MassTransit.AspNetCoreIntegration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/MassTransit.AspNetCoreIntegration.dll -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/MassTransit.RabbitMqTransport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/MassTransit.RabbitMqTransport.dll -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/MassTransit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/MassTransit.dll -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/Microsoft.AspNetCore.JsonPatch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/Microsoft.AspNetCore.JsonPatch.dll -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/Microsoft.AspNetCore.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/Microsoft.AspNetCore.OpenApi.dll -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/Microsoft.AspNetCore.Razor.Language.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/Microsoft.AspNetCore.Razor.Language.dll -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/Microsoft.CodeAnalysis.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/Microsoft.CodeAnalysis.Razor.dll -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/Microsoft.DotNet.PlatformAbstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/Microsoft.DotNet.PlatformAbstractions.dll -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/Microsoft.Extensions.DependencyModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/Microsoft.Extensions.DependencyModel.dll -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/Microsoft.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/Microsoft.OpenApi.dll -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/Newtonsoft.Json.Bson.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/Newtonsoft.Json.Bson.dll -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/RabbitMQ.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/RabbitMQ.Client.dll -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/ResponseHelpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/ResponseHelpers.dll -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/ResponseHelpers.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/ResponseHelpers.pdb -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/Serilog.AspNetCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/Serilog.AspNetCore.dll -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/Serilog.Enrichers.Environment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/Serilog.Enrichers.Environment.dll -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/Serilog.Extensions.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/Serilog.Extensions.Hosting.dll -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/Serilog.Extensions.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/Serilog.Extensions.Logging.dll -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/Serilog.Formatting.Compact.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/Serilog.Formatting.Compact.dll -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/Serilog.Formatting.Elasticsearch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/Serilog.Formatting.Elasticsearch.dll -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/Serilog.Settings.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/Serilog.Settings.Configuration.dll -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/Serilog.Sinks.Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/Serilog.Sinks.Console.dll -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/Serilog.Sinks.Debug.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/Serilog.Sinks.Debug.dll -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/Serilog.Sinks.Elasticsearch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/Serilog.Sinks.Elasticsearch.dll -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/Serilog.Sinks.File.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/Serilog.Sinks.File.dll -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/Serilog.Sinks.PeriodicBatching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/Serilog.Sinks.PeriodicBatching.dll -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/Serilog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/Serilog.dll -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/SmsContract.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/SmsContract.dll -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/SmsContract.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/SmsContract.pdb -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/SmsService: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/SmsService -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/SmsService.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/SmsService.deps.json -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/SmsService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/SmsService.dll -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/SmsService.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/SmsService.pdb -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/SmsService.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/SmsService.runtimeconfig.json -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/Swashbuckle.AspNetCore.Swagger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/Swashbuckle.AspNetCore.Swagger.dll -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/System.Security.Permissions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/System.Security.Permissions.dll -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/System.Text.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/System.Text.Json.dll -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/appsettings.Development.json -------------------------------------------------------------------------------- /src/Services/SmsService/bin/Debug/net7.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/bin/Debug/net7.0/appsettings.json -------------------------------------------------------------------------------- /src/Services/SmsService/obj/Debug/net7.0/SmsService.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/obj/Debug/net7.0/SmsService.AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Services/SmsService/obj/Debug/net7.0/SmsService.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 4a2148861b9e5cf513bab2f85f8dffcfe22b1618 2 | -------------------------------------------------------------------------------- /src/Services/SmsService/obj/Debug/net7.0/SmsService.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/obj/Debug/net7.0/SmsService.GlobalUsings.g.cs -------------------------------------------------------------------------------- /src/Services/SmsService/obj/Debug/net7.0/SmsService.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Services/SmsService/obj/Debug/net7.0/SmsService.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/obj/Debug/net7.0/SmsService.assets.cache -------------------------------------------------------------------------------- /src/Services/SmsService/obj/Debug/net7.0/SmsService.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/obj/Debug/net7.0/SmsService.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /src/Services/SmsService/obj/Debug/net7.0/SmsService.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Services/SmsService/obj/Debug/net7.0/SmsService.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 9b494b8482e690249307017a1f344fa964c1c3f7 2 | -------------------------------------------------------------------------------- /src/Services/SmsService/obj/Debug/net7.0/SmsService.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/obj/Debug/net7.0/SmsService.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /src/Services/SmsService/obj/Debug/net7.0/SmsService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/obj/Debug/net7.0/SmsService.dll -------------------------------------------------------------------------------- /src/Services/SmsService/obj/Debug/net7.0/SmsService.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 3e8e799ee7fbe93a3a9ea08293376b4fddecc937 2 | -------------------------------------------------------------------------------- /src/Services/SmsService/obj/Debug/net7.0/SmsService.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/obj/Debug/net7.0/SmsService.pdb -------------------------------------------------------------------------------- /src/Services/SmsService/obj/Debug/net7.0/apphost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/obj/Debug/net7.0/apphost -------------------------------------------------------------------------------- /src/Services/SmsService/obj/Debug/net7.0/ref/SmsService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/obj/Debug/net7.0/ref/SmsService.dll -------------------------------------------------------------------------------- /src/Services/SmsService/obj/Debug/net7.0/refint/SmsService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/obj/Debug/net7.0/refint/SmsService.dll -------------------------------------------------------------------------------- /src/Services/SmsService/obj/Debug/net7.0/staticwebassets.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/obj/Debug/net7.0/staticwebassets.build.json -------------------------------------------------------------------------------- /src/Services/SmsService/obj/SmsService.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/obj/SmsService.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /src/Services/SmsService/obj/SmsService.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/obj/SmsService.csproj.nuget.g.props -------------------------------------------------------------------------------- /src/Services/SmsService/obj/SmsService.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/obj/SmsService.csproj.nuget.g.targets -------------------------------------------------------------------------------- /src/Services/SmsService/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/obj/project.assets.json -------------------------------------------------------------------------------- /src/Services/SmsService/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/obj/project.nuget.cache -------------------------------------------------------------------------------- /src/Services/SmsService/obj/project.packagespec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/Services/SmsService/obj/project.packagespec.json -------------------------------------------------------------------------------- /src/Services/SmsService/obj/rider.project.restore.info: -------------------------------------------------------------------------------- 1 | 16951451038505219 -------------------------------------------------------------------------------- /src/SmsService/obj/SmsService.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/SmsService/obj/SmsService.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /src/SmsService/obj/SmsService.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/SmsService/obj/SmsService.csproj.nuget.g.props -------------------------------------------------------------------------------- /src/SmsService/obj/SmsService.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/SmsService/obj/SmsService.csproj.nuget.g.targets -------------------------------------------------------------------------------- /src/SmsService/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/SmsService/obj/project.assets.json -------------------------------------------------------------------------------- /src/SmsService/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoo-Asadnejad/NotificationService/HEAD/src/SmsService/obj/project.nuget.cache --------------------------------------------------------------------------------