├── .DS_Store ├── .github └── workflows │ ├── VacunaAPI.yml │ └── main_vacunaapi.yml ├── .gitignore ├── LICENSE ├── README.md └── src ├── .config └── dotnet-tools.json ├── ApplicationDbContext.cs ├── Behaviors └── BehaviorBadRequests.cs ├── Controllers ├── AccountController.cs ├── ImagesController.cs ├── ImmunizationsController.cs ├── LaboratoriesController.cs ├── PsBaseController.cs └── VaccinesController.cs ├── DTOs ├── AuthenticationResponse.cs ├── ChangePasswordDTO.cs ├── FullImmunizationDTO.cs ├── ImmunizationCreationDTO.cs ├── ImmunizationDTO.cs ├── ImmunizationValidDTO.cs ├── InmunizationCardDTO.cs ├── IsVaccinedWithDTO.cs ├── LaboratoryDTO.cs ├── LandingPageDTO.cs ├── PaginationDTO.cs ├── RecoverPasswordDTO.cs ├── ResetPasswordDTO.cs ├── UserCreationDTO.cs ├── UserCreationFromMinistryDTO.cs ├── UserCredentials.cs ├── UserDTO.cs └── VaccineDTO.cs ├── Entities ├── ApplicationUser.cs ├── Image.cs ├── ImageType.cs ├── Immunization.cs ├── Laboratory.cs ├── Vaccine.cs └── VacunationCenter.cs ├── Filters ├── BadRequestParser.cs ├── ExceptionFilter.cs └── MyAccionFilter.cs ├── Middleware ├── ErrorHandlerMiddleware.cs └── JwtMiddleware.cs ├── Migrations ├── 20210801202747_Init.Designer.cs ├── 20210801202747_Init.cs ├── 20210917142818_EnablingThePosibilityForValidationFromMinistry.Designer.cs ├── 20210917142818_EnablingThePosibilityForValidationFromMinistry.cs ├── 20210926233143_IndividualVaccineAndLabs.Designer.cs ├── 20210926233143_IndividualVaccineAndLabs.cs ├── 20210926233518_RenamingImmunization.Designer.cs ├── 20210926233518_RenamingImmunization.cs ├── 20211016210658_ManipulatingImagesIndividually.Designer.cs ├── 20211016210658_ManipulatingImagesIndividually.cs ├── 20211016221639_ImageWithGuid.Designer.cs ├── 20211016221639_ImageWithGuid.cs └── ApplicationDbContextModelSnapshot.cs ├── Models ├── Account.cs ├── Authenticate.cs ├── ForgotPasswordRequest.cs ├── LoginViewModel.cs ├── RefreshToken.cs ├── RegisterViewModel.cs ├── ResetPasswordRequest.cs ├── ResetPasswordViewModel.cs ├── Response.cs ├── RevokeTokenRequest.cs ├── UserManagerResponse.cs ├── ValidateResetTokenRequest.cs └── VerifyEmailRequest.cs ├── Pages ├── ResetPassword.cshtml ├── ResetPassword.cshtml.cs └── _ValidationScriptsPartial.cshtml ├── Program.cs ├── Properties ├── ServiceDependencies │ ├── MoviesAPIsG - Web Deploy │ │ ├── mssql1.arm.json │ │ └── profile.arm.json │ ├── VacunaAPI - Web Deploy │ │ └── profile.arm.json │ ├── VacunaAPI │ │ └── profile.arm.json │ └── main_vacunaapi │ │ └── profile.arm.json ├── launchSettings.json ├── serviceDependencies.MoviesAPIsG - Web Deploy.json ├── serviceDependencies.json └── serviceDependencies.local.json ├── Repositories ├── IRepository.cs └── InMemoryRepository.cs ├── Services └── AccountService.cs ├── Startup.cs ├── Utils ├── AppException.cs ├── AppSettings.cs ├── AutoMapperProfiles.cs ├── AzureStorageSaver.cs ├── HttpContextExtensions.cs ├── IMailHelper.cs ├── IQueryableExtensions.cs ├── IStorageSaver.cs ├── LocalStorageSaver.cs ├── MailHelper.cs ├── StaticValues.cs └── TypeBinder.cs ├── VacunaAPI.csproj ├── VacunaAPI.sln ├── Validations └── FirstLetterUppercaseAttribute.cs ├── appsettings.json ├── bin └── Release │ └── net5.0 │ ├── AutoMapper.Extensions.Microsoft.DependencyInjection.dll │ ├── AutoMapper.dll │ ├── Azure.Core.dll │ ├── Azure.Storage.Blobs.dll │ ├── Azure.Storage.Common.dll │ ├── BouncyCastle.Crypto.dll │ ├── Humanizer.dll │ ├── MailKit.dll │ ├── Microsoft.AI.DependencyCollector.dll │ ├── Microsoft.AI.EventCounterCollector.dll │ ├── Microsoft.AI.PerfCounterCollector.dll │ ├── Microsoft.AI.ServerTelemetryChannel.dll │ ├── Microsoft.AI.WindowsServer.dll │ ├── Microsoft.ApplicationInsights.AspNetCore.dll │ ├── Microsoft.ApplicationInsights.dll │ ├── Microsoft.AspNetCore.Authentication.JwtBearer.dll │ ├── Microsoft.AspNetCore.Authentication.OpenIdConnect.dll │ ├── Microsoft.AspNetCore.Cryptography.Internal.dll │ ├── Microsoft.AspNetCore.Cryptography.KeyDerivation.dll │ ├── Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll │ ├── Microsoft.AspNetCore.Razor.Language.dll │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.dll │ ├── Microsoft.CodeAnalysis.CSharp.dll │ ├── Microsoft.CodeAnalysis.Razor.dll │ ├── Microsoft.CodeAnalysis.Workspaces.dll │ ├── Microsoft.CodeAnalysis.dll │ ├── Microsoft.Data.SqlClient.dll │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ ├── Microsoft.EntityFrameworkCore.Design.dll │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ ├── Microsoft.EntityFrameworkCore.SqlServer.NetTopologySuite.dll │ ├── Microsoft.EntityFrameworkCore.SqlServer.dll │ ├── Microsoft.EntityFrameworkCore.dll │ ├── Microsoft.Extensions.DependencyInjection.dll │ ├── Microsoft.Extensions.DiagnosticAdapter.dll │ ├── Microsoft.Extensions.Identity.Core.dll │ ├── Microsoft.Extensions.Identity.Stores.dll │ ├── Microsoft.Extensions.Logging.ApplicationInsights.dll │ ├── Microsoft.Extensions.PlatformAbstractions.dll │ ├── Microsoft.Identity.Client.dll │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ ├── Microsoft.IdentityModel.Logging.dll │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll │ ├── Microsoft.IdentityModel.Protocols.dll │ ├── Microsoft.IdentityModel.Tokens.dll │ ├── Microsoft.OpenApi.dll │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Core.dll │ ├── Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll │ ├── Microsoft.VisualStudio.Web.CodeGeneration.dll │ ├── Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll │ ├── Microsoft.WindowsAzure.Storage.dll │ ├── MimeKit.dll │ ├── NetTopologySuite.IO.SqlServerBytes.dll │ ├── NetTopologySuite.dll │ ├── Newtonsoft.Json.dll │ ├── Swashbuckle.AspNetCore.Swagger.dll │ ├── Swashbuckle.AspNetCore.SwaggerGen.dll │ ├── Swashbuckle.AspNetCore.SwaggerUI.dll │ ├── System.Composition.AttributedModel.dll │ ├── System.Composition.Convention.dll │ ├── System.Composition.Hosting.dll │ ├── System.Composition.Runtime.dll │ ├── System.Composition.TypedParts.dll │ ├── System.Configuration.ConfigurationManager.dll │ ├── System.Diagnostics.DiagnosticSource.dll │ ├── System.Diagnostics.PerformanceCounter.dll │ ├── System.IdentityModel.Tokens.Jwt.dll │ ├── System.Memory.Data.dll │ ├── System.Runtime.Caching.dll │ ├── System.Security.Cryptography.ProtectedData.dll │ ├── VacunaAPI.Views.dll │ ├── VacunaAPI.deps.json │ ├── VacunaAPI.dll │ ├── VacunaAPI.exe │ ├── VacunaAPI.runtimeconfig.dev.json │ ├── VacunaAPI.runtimeconfig.json │ ├── appsettings.json │ ├── cs │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── de │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── dotnet-aspnet-codegenerator-design.dll │ ├── es │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── fr │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── it │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── ja │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── ko │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── pl │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── pt-BR │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── ref │ └── VacunaAPI.dll │ ├── ru │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── runtimes │ ├── unix │ │ └── lib │ │ │ └── netcoreapp3.1 │ │ │ └── Microsoft.Data.SqlClient.dll │ ├── win-arm │ │ ├── lib │ │ │ └── net5.0 │ │ │ │ └── dotnet-aspnet-codegenerator-design.exe │ │ └── native │ │ │ └── Microsoft.Data.SqlClient.SNI.dll │ ├── win-arm64 │ │ ├── lib │ │ │ └── net5.0 │ │ │ │ └── dotnet-aspnet-codegenerator-design.exe │ │ └── native │ │ │ └── Microsoft.Data.SqlClient.SNI.dll │ ├── win-x64 │ │ └── native │ │ │ └── Microsoft.Data.SqlClient.SNI.dll │ ├── win-x86 │ │ └── native │ │ │ └── Microsoft.Data.SqlClient.SNI.dll │ └── win │ │ └── lib │ │ ├── netcoreapp2.0 │ │ └── System.Diagnostics.PerformanceCounter.dll │ │ ├── netcoreapp3.1 │ │ └── Microsoft.Data.SqlClient.dll │ │ └── netstandard2.0 │ │ ├── System.Runtime.Caching.dll │ │ └── System.Security.Cryptography.ProtectedData.dll │ ├── tr │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── zh-Hans │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ └── zh-Hant │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll ├── obj ├── Debug │ └── net5.0 │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ ├── EFCoreSqlServerNetTopologySuite.cs │ │ ├── Razor │ │ └── Pages │ │ │ ├── ResetPassword.cshtml.g.cs │ │ │ └── _ValidationScriptsPartial.cshtml.g.cs │ │ ├── VacunaAPI.AssemblyInfo.cs │ │ ├── VacunaAPI.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── VacunaAPI.MvcApplicationPartsAssemblyInfo.cs │ │ ├── VacunaAPI.RazorAssemblyInfo.cs │ │ ├── VacunaAPI.RazorTargetAssemblyInfo.cs │ │ ├── VacunaAPI.Views.dll │ │ ├── VacunaAPI.csproj.CopyComplete │ │ ├── VacunaAPI.csproj.FileListAbsolute.txt │ │ ├── VacunaAPI.dll │ │ ├── apphost.exe │ │ ├── ref │ │ └── VacunaAPI.dll │ │ └── staticwebassets │ │ └── VacunaAPI.StaticWebAssets.xml ├── Release │ └── net5.0 │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ ├── EFCoreSqlServerNetTopologySuite.cs │ │ ├── PubTmp │ │ ├── Out │ │ │ ├── AutoMapper.Extensions.Microsoft.DependencyInjection.dll │ │ │ ├── AutoMapper.dll │ │ │ ├── Azure.Core.dll │ │ │ ├── Azure.Storage.Blobs.dll │ │ │ ├── Azure.Storage.Common.dll │ │ │ ├── BouncyCastle.Crypto.dll │ │ │ ├── Humanizer.dll │ │ │ ├── MailKit.dll │ │ │ ├── Microsoft.AI.DependencyCollector.dll │ │ │ ├── Microsoft.AI.EventCounterCollector.dll │ │ │ ├── Microsoft.AI.PerfCounterCollector.dll │ │ │ ├── Microsoft.AI.ServerTelemetryChannel.dll │ │ │ ├── Microsoft.AI.WindowsServer.dll │ │ │ ├── Microsoft.ApplicationInsights.AspNetCore.dll │ │ │ ├── Microsoft.ApplicationInsights.dll │ │ │ ├── Microsoft.AspNetCore.Authentication.JwtBearer.dll │ │ │ ├── Microsoft.AspNetCore.Authentication.OpenIdConnect.dll │ │ │ ├── Microsoft.AspNetCore.Cryptography.Internal.dll │ │ │ ├── Microsoft.AspNetCore.Cryptography.KeyDerivation.dll │ │ │ ├── Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll │ │ │ ├── Microsoft.AspNetCore.Razor.Language.dll │ │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.dll │ │ │ ├── Microsoft.CodeAnalysis.Razor.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.dll │ │ │ ├── Microsoft.CodeAnalysis.dll │ │ │ ├── Microsoft.Data.SqlClient.dll │ │ │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ │ │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ │ │ ├── Microsoft.EntityFrameworkCore.SqlServer.NetTopologySuite.dll │ │ │ ├── Microsoft.EntityFrameworkCore.SqlServer.dll │ │ │ ├── Microsoft.EntityFrameworkCore.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ ├── Microsoft.Extensions.DiagnosticAdapter.dll │ │ │ ├── Microsoft.Extensions.Identity.Core.dll │ │ │ ├── Microsoft.Extensions.Identity.Stores.dll │ │ │ ├── Microsoft.Extensions.Logging.ApplicationInsights.dll │ │ │ ├── Microsoft.Extensions.PlatformAbstractions.dll │ │ │ ├── Microsoft.Identity.Client.dll │ │ │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ │ │ ├── Microsoft.IdentityModel.Logging.dll │ │ │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll │ │ │ ├── Microsoft.IdentityModel.Protocols.dll │ │ │ ├── Microsoft.IdentityModel.Tokens.dll │ │ │ ├── Microsoft.OpenApi.dll │ │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll │ │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Core.dll │ │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll │ │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll │ │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll │ │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.dll │ │ │ ├── Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll │ │ │ ├── Microsoft.WindowsAzure.Storage.dll │ │ │ ├── MimeKit.dll │ │ │ ├── NetTopologySuite.IO.SqlServerBytes.dll │ │ │ ├── NetTopologySuite.dll │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── Swashbuckle.AspNetCore.Swagger.dll │ │ │ ├── Swashbuckle.AspNetCore.SwaggerGen.dll │ │ │ ├── Swashbuckle.AspNetCore.SwaggerUI.dll │ │ │ ├── System.Composition.AttributedModel.dll │ │ │ ├── System.Composition.Convention.dll │ │ │ ├── System.Composition.Hosting.dll │ │ │ ├── System.Composition.Runtime.dll │ │ │ ├── System.Composition.TypedParts.dll │ │ │ ├── System.Configuration.ConfigurationManager.dll │ │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ │ ├── System.Diagnostics.PerformanceCounter.dll │ │ │ ├── System.IdentityModel.Tokens.Jwt.dll │ │ │ ├── System.Memory.Data.dll │ │ │ ├── System.Runtime.Caching.dll │ │ │ ├── System.Security.Cryptography.ProtectedData.dll │ │ │ ├── VacunaAPI.Views.dll │ │ │ ├── VacunaAPI.deps.json │ │ │ ├── VacunaAPI.dll │ │ │ ├── VacunaAPI.exe │ │ │ ├── VacunaAPI.runtimeconfig.json │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ ├── cs │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── de │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── dotnet-aspnet-codegenerator-design.dll │ │ │ ├── es │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── fr │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── it │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── ja │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── ko │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── pl │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── pt-BR │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── ru │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── runtimes │ │ │ │ ├── unix │ │ │ │ │ └── lib │ │ │ │ │ │ └── netcoreapp3.1 │ │ │ │ │ │ └── Microsoft.Data.SqlClient.dll │ │ │ │ ├── win-arm │ │ │ │ │ ├── lib │ │ │ │ │ │ └── net5.0 │ │ │ │ │ │ │ └── dotnet-aspnet-codegenerator-design.exe │ │ │ │ │ └── native │ │ │ │ │ │ └── Microsoft.Data.SqlClient.SNI.dll │ │ │ │ ├── win-arm64 │ │ │ │ │ ├── lib │ │ │ │ │ │ └── net5.0 │ │ │ │ │ │ │ └── dotnet-aspnet-codegenerator-design.exe │ │ │ │ │ └── native │ │ │ │ │ │ └── Microsoft.Data.SqlClient.SNI.dll │ │ │ │ ├── win-x64 │ │ │ │ │ └── native │ │ │ │ │ │ └── Microsoft.Data.SqlClient.SNI.dll │ │ │ │ ├── win-x86 │ │ │ │ │ └── native │ │ │ │ │ │ └── Microsoft.Data.SqlClient.SNI.dll │ │ │ │ └── win │ │ │ │ │ └── lib │ │ │ │ │ ├── netcoreapp2.0 │ │ │ │ │ └── System.Diagnostics.PerformanceCounter.dll │ │ │ │ │ ├── netcoreapp3.1 │ │ │ │ │ └── Microsoft.Data.SqlClient.dll │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ ├── System.Runtime.Caching.dll │ │ │ │ │ └── System.Security.Cryptography.ProtectedData.dll │ │ │ ├── tr │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── web.config │ │ │ ├── wwwroot │ │ │ │ └── images │ │ │ │ │ └── unnamed.png │ │ │ ├── zh-Hans │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ └── zh-Hant │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── VacunaAPI.Parameters.xml │ │ └── VacunaAPI.SourceManifest.xml │ │ ├── PublishOutputs.5190ffe746.txt │ │ ├── Razor │ │ └── Pages │ │ │ ├── ResetPassword.cshtml.g.cs │ │ │ └── _ValidationScriptsPartial.cshtml.g.cs │ │ ├── VacunaAPI.AssemblyInfo.cs │ │ ├── VacunaAPI.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── VacunaAPI.MvcApplicationPartsAssemblyInfo.cs │ │ ├── VacunaAPI.RazorAssemblyInfo.cs │ │ ├── VacunaAPI.RazorTargetAssemblyInfo.cs │ │ ├── VacunaAPI.Views.dll │ │ ├── VacunaAPI.csproj.CopyComplete │ │ ├── VacunaAPI.csproj.FileListAbsolute.txt │ │ ├── VacunaAPI.deps.json │ │ ├── VacunaAPI.dll │ │ ├── apphost.exe │ │ ├── ref │ │ └── VacunaAPI.dll │ │ └── staticwebassets │ │ └── VacunaAPI.StaticWebAssets.xml ├── VacunaAPI.csproj.nuget.dgspec.json ├── VacunaAPI.csproj.nuget.g.props ├── VacunaAPI.csproj.nuget.g.targets └── project.assets.json └── wwwroot └── images └── unnamed.png /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/.DS_Store -------------------------------------------------------------------------------- /.github/workflows/VacunaAPI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/.github/workflows/VacunaAPI.yml -------------------------------------------------------------------------------- /.github/workflows/main_vacunaapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/.github/workflows/main_vacunaapi.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/README.md -------------------------------------------------------------------------------- /src/.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/.config/dotnet-tools.json -------------------------------------------------------------------------------- /src/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/ApplicationDbContext.cs -------------------------------------------------------------------------------- /src/Behaviors/BehaviorBadRequests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Behaviors/BehaviorBadRequests.cs -------------------------------------------------------------------------------- /src/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Controllers/AccountController.cs -------------------------------------------------------------------------------- /src/Controllers/ImagesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Controllers/ImagesController.cs -------------------------------------------------------------------------------- /src/Controllers/ImmunizationsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Controllers/ImmunizationsController.cs -------------------------------------------------------------------------------- /src/Controllers/LaboratoriesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Controllers/LaboratoriesController.cs -------------------------------------------------------------------------------- /src/Controllers/PsBaseController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Controllers/PsBaseController.cs -------------------------------------------------------------------------------- /src/Controllers/VaccinesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Controllers/VaccinesController.cs -------------------------------------------------------------------------------- /src/DTOs/AuthenticationResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/DTOs/AuthenticationResponse.cs -------------------------------------------------------------------------------- /src/DTOs/ChangePasswordDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/DTOs/ChangePasswordDTO.cs -------------------------------------------------------------------------------- /src/DTOs/FullImmunizationDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/DTOs/FullImmunizationDTO.cs -------------------------------------------------------------------------------- /src/DTOs/ImmunizationCreationDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/DTOs/ImmunizationCreationDTO.cs -------------------------------------------------------------------------------- /src/DTOs/ImmunizationDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/DTOs/ImmunizationDTO.cs -------------------------------------------------------------------------------- /src/DTOs/ImmunizationValidDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/DTOs/ImmunizationValidDTO.cs -------------------------------------------------------------------------------- /src/DTOs/InmunizationCardDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/DTOs/InmunizationCardDTO.cs -------------------------------------------------------------------------------- /src/DTOs/IsVaccinedWithDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/DTOs/IsVaccinedWithDTO.cs -------------------------------------------------------------------------------- /src/DTOs/LaboratoryDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/DTOs/LaboratoryDTO.cs -------------------------------------------------------------------------------- /src/DTOs/LandingPageDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/DTOs/LandingPageDTO.cs -------------------------------------------------------------------------------- /src/DTOs/PaginationDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/DTOs/PaginationDTO.cs -------------------------------------------------------------------------------- /src/DTOs/RecoverPasswordDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/DTOs/RecoverPasswordDTO.cs -------------------------------------------------------------------------------- /src/DTOs/ResetPasswordDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/DTOs/ResetPasswordDTO.cs -------------------------------------------------------------------------------- /src/DTOs/UserCreationDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/DTOs/UserCreationDTO.cs -------------------------------------------------------------------------------- /src/DTOs/UserCreationFromMinistryDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/DTOs/UserCreationFromMinistryDTO.cs -------------------------------------------------------------------------------- /src/DTOs/UserCredentials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/DTOs/UserCredentials.cs -------------------------------------------------------------------------------- /src/DTOs/UserDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/DTOs/UserDTO.cs -------------------------------------------------------------------------------- /src/DTOs/VaccineDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/DTOs/VaccineDTO.cs -------------------------------------------------------------------------------- /src/Entities/ApplicationUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Entities/ApplicationUser.cs -------------------------------------------------------------------------------- /src/Entities/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Entities/Image.cs -------------------------------------------------------------------------------- /src/Entities/ImageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Entities/ImageType.cs -------------------------------------------------------------------------------- /src/Entities/Immunization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Entities/Immunization.cs -------------------------------------------------------------------------------- /src/Entities/Laboratory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Entities/Laboratory.cs -------------------------------------------------------------------------------- /src/Entities/Vaccine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Entities/Vaccine.cs -------------------------------------------------------------------------------- /src/Entities/VacunationCenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Entities/VacunationCenter.cs -------------------------------------------------------------------------------- /src/Filters/BadRequestParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Filters/BadRequestParser.cs -------------------------------------------------------------------------------- /src/Filters/ExceptionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Filters/ExceptionFilter.cs -------------------------------------------------------------------------------- /src/Filters/MyAccionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Filters/MyAccionFilter.cs -------------------------------------------------------------------------------- /src/Middleware/ErrorHandlerMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Middleware/ErrorHandlerMiddleware.cs -------------------------------------------------------------------------------- /src/Middleware/JwtMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Middleware/JwtMiddleware.cs -------------------------------------------------------------------------------- /src/Migrations/20210801202747_Init.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Migrations/20210801202747_Init.Designer.cs -------------------------------------------------------------------------------- /src/Migrations/20210801202747_Init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Migrations/20210801202747_Init.cs -------------------------------------------------------------------------------- /src/Migrations/20210917142818_EnablingThePosibilityForValidationFromMinistry.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Migrations/20210917142818_EnablingThePosibilityForValidationFromMinistry.Designer.cs -------------------------------------------------------------------------------- /src/Migrations/20210917142818_EnablingThePosibilityForValidationFromMinistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Migrations/20210917142818_EnablingThePosibilityForValidationFromMinistry.cs -------------------------------------------------------------------------------- /src/Migrations/20210926233143_IndividualVaccineAndLabs.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Migrations/20210926233143_IndividualVaccineAndLabs.Designer.cs -------------------------------------------------------------------------------- /src/Migrations/20210926233143_IndividualVaccineAndLabs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Migrations/20210926233143_IndividualVaccineAndLabs.cs -------------------------------------------------------------------------------- /src/Migrations/20210926233518_RenamingImmunization.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Migrations/20210926233518_RenamingImmunization.Designer.cs -------------------------------------------------------------------------------- /src/Migrations/20210926233518_RenamingImmunization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Migrations/20210926233518_RenamingImmunization.cs -------------------------------------------------------------------------------- /src/Migrations/20211016210658_ManipulatingImagesIndividually.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Migrations/20211016210658_ManipulatingImagesIndividually.Designer.cs -------------------------------------------------------------------------------- /src/Migrations/20211016210658_ManipulatingImagesIndividually.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Migrations/20211016210658_ManipulatingImagesIndividually.cs -------------------------------------------------------------------------------- /src/Migrations/20211016221639_ImageWithGuid.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Migrations/20211016221639_ImageWithGuid.Designer.cs -------------------------------------------------------------------------------- /src/Migrations/20211016221639_ImageWithGuid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Migrations/20211016221639_ImageWithGuid.cs -------------------------------------------------------------------------------- /src/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/Models/Account.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Models/Account.cs -------------------------------------------------------------------------------- /src/Models/Authenticate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Models/Authenticate.cs -------------------------------------------------------------------------------- /src/Models/ForgotPasswordRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Models/ForgotPasswordRequest.cs -------------------------------------------------------------------------------- /src/Models/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Models/LoginViewModel.cs -------------------------------------------------------------------------------- /src/Models/RefreshToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Models/RefreshToken.cs -------------------------------------------------------------------------------- /src/Models/RegisterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Models/RegisterViewModel.cs -------------------------------------------------------------------------------- /src/Models/ResetPasswordRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Models/ResetPasswordRequest.cs -------------------------------------------------------------------------------- /src/Models/ResetPasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Models/ResetPasswordViewModel.cs -------------------------------------------------------------------------------- /src/Models/Response.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Models/Response.cs -------------------------------------------------------------------------------- /src/Models/RevokeTokenRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Models/RevokeTokenRequest.cs -------------------------------------------------------------------------------- /src/Models/UserManagerResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Models/UserManagerResponse.cs -------------------------------------------------------------------------------- /src/Models/ValidateResetTokenRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Models/ValidateResetTokenRequest.cs -------------------------------------------------------------------------------- /src/Models/VerifyEmailRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Models/VerifyEmailRequest.cs -------------------------------------------------------------------------------- /src/Pages/ResetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Pages/ResetPassword.cshtml -------------------------------------------------------------------------------- /src/Pages/ResetPassword.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Pages/ResetPassword.cshtml.cs -------------------------------------------------------------------------------- /src/Pages/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Pages/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /src/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Program.cs -------------------------------------------------------------------------------- /src/Properties/ServiceDependencies/MoviesAPIsG - Web Deploy/mssql1.arm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Properties/ServiceDependencies/MoviesAPIsG - Web Deploy/mssql1.arm.json -------------------------------------------------------------------------------- /src/Properties/ServiceDependencies/MoviesAPIsG - Web Deploy/profile.arm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Properties/ServiceDependencies/MoviesAPIsG - Web Deploy/profile.arm.json -------------------------------------------------------------------------------- /src/Properties/ServiceDependencies/VacunaAPI - Web Deploy/profile.arm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Properties/ServiceDependencies/VacunaAPI - Web Deploy/profile.arm.json -------------------------------------------------------------------------------- /src/Properties/ServiceDependencies/VacunaAPI/profile.arm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Properties/ServiceDependencies/VacunaAPI/profile.arm.json -------------------------------------------------------------------------------- /src/Properties/ServiceDependencies/main_vacunaapi/profile.arm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Properties/ServiceDependencies/main_vacunaapi/profile.arm.json -------------------------------------------------------------------------------- /src/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Properties/serviceDependencies.MoviesAPIsG - Web Deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Properties/serviceDependencies.MoviesAPIsG - Web Deploy.json -------------------------------------------------------------------------------- /src/Properties/serviceDependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Properties/serviceDependencies.json -------------------------------------------------------------------------------- /src/Properties/serviceDependencies.local.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": {} 3 | } -------------------------------------------------------------------------------- /src/Repositories/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Repositories/IRepository.cs -------------------------------------------------------------------------------- /src/Repositories/InMemoryRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Repositories/InMemoryRepository.cs -------------------------------------------------------------------------------- /src/Services/AccountService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Services/AccountService.cs -------------------------------------------------------------------------------- /src/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Startup.cs -------------------------------------------------------------------------------- /src/Utils/AppException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Utils/AppException.cs -------------------------------------------------------------------------------- /src/Utils/AppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Utils/AppSettings.cs -------------------------------------------------------------------------------- /src/Utils/AutoMapperProfiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Utils/AutoMapperProfiles.cs -------------------------------------------------------------------------------- /src/Utils/AzureStorageSaver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Utils/AzureStorageSaver.cs -------------------------------------------------------------------------------- /src/Utils/HttpContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Utils/HttpContextExtensions.cs -------------------------------------------------------------------------------- /src/Utils/IMailHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Utils/IMailHelper.cs -------------------------------------------------------------------------------- /src/Utils/IQueryableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Utils/IQueryableExtensions.cs -------------------------------------------------------------------------------- /src/Utils/IStorageSaver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Utils/IStorageSaver.cs -------------------------------------------------------------------------------- /src/Utils/LocalStorageSaver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Utils/LocalStorageSaver.cs -------------------------------------------------------------------------------- /src/Utils/MailHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Utils/MailHelper.cs -------------------------------------------------------------------------------- /src/Utils/StaticValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Utils/StaticValues.cs -------------------------------------------------------------------------------- /src/Utils/TypeBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Utils/TypeBinder.cs -------------------------------------------------------------------------------- /src/VacunaAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/VacunaAPI.csproj -------------------------------------------------------------------------------- /src/VacunaAPI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/VacunaAPI.sln -------------------------------------------------------------------------------- /src/Validations/FirstLetterUppercaseAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/Validations/FirstLetterUppercaseAttribute.cs -------------------------------------------------------------------------------- /src/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/appsettings.json -------------------------------------------------------------------------------- /src/bin/Release/net5.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/AutoMapper.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Azure.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Azure.Core.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Azure.Storage.Blobs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Azure.Storage.Blobs.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Azure.Storage.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Azure.Storage.Common.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/BouncyCastle.Crypto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/BouncyCastle.Crypto.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Humanizer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Humanizer.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/MailKit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/MailKit.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Microsoft.AI.DependencyCollector.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Microsoft.AI.DependencyCollector.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Microsoft.AI.EventCounterCollector.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Microsoft.AI.EventCounterCollector.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Microsoft.AI.PerfCounterCollector.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Microsoft.AI.PerfCounterCollector.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Microsoft.AI.ServerTelemetryChannel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Microsoft.AI.ServerTelemetryChannel.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Microsoft.AI.WindowsServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Microsoft.AI.WindowsServer.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Microsoft.ApplicationInsights.AspNetCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Microsoft.ApplicationInsights.AspNetCore.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Microsoft.ApplicationInsights.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Microsoft.ApplicationInsights.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Microsoft.AspNetCore.Cryptography.Internal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Microsoft.AspNetCore.Cryptography.Internal.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Microsoft.AspNetCore.Razor.Language.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Microsoft.AspNetCore.Razor.Language.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Microsoft.CodeAnalysis.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Microsoft.CodeAnalysis.Razor.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Microsoft.CodeAnalysis.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Microsoft.CodeAnalysis.Workspaces.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Microsoft.EntityFrameworkCore.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Microsoft.EntityFrameworkCore.Abstractions.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Microsoft.EntityFrameworkCore.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Microsoft.EntityFrameworkCore.Design.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Microsoft.EntityFrameworkCore.Relational.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Microsoft.EntityFrameworkCore.Relational.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Microsoft.EntityFrameworkCore.SqlServer.NetTopologySuite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Microsoft.EntityFrameworkCore.SqlServer.NetTopologySuite.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Microsoft.EntityFrameworkCore.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Microsoft.EntityFrameworkCore.SqlServer.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Microsoft.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Microsoft.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Microsoft.Extensions.DiagnosticAdapter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Microsoft.Extensions.DiagnosticAdapter.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Microsoft.Extensions.Identity.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Microsoft.Extensions.Identity.Core.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Microsoft.Extensions.Identity.Stores.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Microsoft.Extensions.Identity.Stores.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Microsoft.Extensions.Logging.ApplicationInsights.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Microsoft.Extensions.Logging.ApplicationInsights.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Microsoft.Extensions.PlatformAbstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Microsoft.Extensions.PlatformAbstractions.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Microsoft.Identity.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Microsoft.Identity.Client.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Microsoft.IdentityModel.JsonWebTokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Microsoft.IdentityModel.JsonWebTokens.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Microsoft.IdentityModel.Protocols.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Microsoft.IdentityModel.Protocols.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Microsoft.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Microsoft.OpenApi.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Microsoft.WindowsAzure.Storage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Microsoft.WindowsAzure.Storage.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/MimeKit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/MimeKit.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/NetTopologySuite.IO.SqlServerBytes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/NetTopologySuite.IO.SqlServerBytes.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/NetTopologySuite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/NetTopologySuite.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Swashbuckle.AspNetCore.Swagger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Swashbuckle.AspNetCore.Swagger.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/System.Composition.AttributedModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/System.Composition.AttributedModel.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/System.Composition.Convention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/System.Composition.Convention.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/System.Composition.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/System.Composition.Hosting.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/System.Composition.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/System.Composition.Runtime.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/System.Composition.TypedParts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/System.Composition.TypedParts.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/System.Diagnostics.PerformanceCounter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/System.Diagnostics.PerformanceCounter.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/System.Memory.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/System.Memory.Data.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/VacunaAPI.Views.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/VacunaAPI.Views.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/VacunaAPI.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/VacunaAPI.deps.json -------------------------------------------------------------------------------- /src/bin/Release/net5.0/VacunaAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/VacunaAPI.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/VacunaAPI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/VacunaAPI.exe -------------------------------------------------------------------------------- /src/bin/Release/net5.0/VacunaAPI.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/VacunaAPI.runtimeconfig.dev.json -------------------------------------------------------------------------------- /src/bin/Release/net5.0/VacunaAPI.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/VacunaAPI.runtimeconfig.json -------------------------------------------------------------------------------- /src/bin/Release/net5.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/appsettings.json -------------------------------------------------------------------------------- /src/bin/Release/net5.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/cs/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/cs/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/de/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/de/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/dotnet-aspnet-codegenerator-design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/dotnet-aspnet-codegenerator-design.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/es/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/es/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/fr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/fr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/it/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/it/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/ja/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/ja/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/ko/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/ko/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/pl/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/pl/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/pt-BR/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/pt-BR/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/ref/VacunaAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/ref/VacunaAPI.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/ru/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/ru/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/runtimes/win-arm/lib/net5.0/dotnet-aspnet-codegenerator-design.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/runtimes/win-arm/lib/net5.0/dotnet-aspnet-codegenerator-design.exe -------------------------------------------------------------------------------- /src/bin/Release/net5.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/runtimes/win-arm64/lib/net5.0/dotnet-aspnet-codegenerator-design.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/runtimes/win-arm64/lib/net5.0/dotnet-aspnet-codegenerator-design.exe -------------------------------------------------------------------------------- /src/bin/Release/net5.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/tr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/tr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/bin/Release/net5.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/bin/Release/net5.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /src/obj/Debug/net5.0/EFCoreSqlServerNetTopologySuite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Debug/net5.0/EFCoreSqlServerNetTopologySuite.cs -------------------------------------------------------------------------------- /src/obj/Debug/net5.0/Razor/Pages/ResetPassword.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Debug/net5.0/Razor/Pages/ResetPassword.cshtml.g.cs -------------------------------------------------------------------------------- /src/obj/Debug/net5.0/Razor/Pages/_ValidationScriptsPartial.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Debug/net5.0/Razor/Pages/_ValidationScriptsPartial.cshtml.g.cs -------------------------------------------------------------------------------- /src/obj/Debug/net5.0/VacunaAPI.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Debug/net5.0/VacunaAPI.AssemblyInfo.cs -------------------------------------------------------------------------------- /src/obj/Debug/net5.0/VacunaAPI.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Debug/net5.0/VacunaAPI.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /src/obj/Debug/net5.0/VacunaAPI.MvcApplicationPartsAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Debug/net5.0/VacunaAPI.MvcApplicationPartsAssemblyInfo.cs -------------------------------------------------------------------------------- /src/obj/Debug/net5.0/VacunaAPI.RazorAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Debug/net5.0/VacunaAPI.RazorAssemblyInfo.cs -------------------------------------------------------------------------------- /src/obj/Debug/net5.0/VacunaAPI.RazorTargetAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Debug/net5.0/VacunaAPI.RazorTargetAssemblyInfo.cs -------------------------------------------------------------------------------- /src/obj/Debug/net5.0/VacunaAPI.Views.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Debug/net5.0/VacunaAPI.Views.dll -------------------------------------------------------------------------------- /src/obj/Debug/net5.0/VacunaAPI.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/obj/Debug/net5.0/VacunaAPI.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Debug/net5.0/VacunaAPI.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /src/obj/Debug/net5.0/VacunaAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Debug/net5.0/VacunaAPI.dll -------------------------------------------------------------------------------- /src/obj/Debug/net5.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Debug/net5.0/apphost.exe -------------------------------------------------------------------------------- /src/obj/Debug/net5.0/ref/VacunaAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Debug/net5.0/ref/VacunaAPI.dll -------------------------------------------------------------------------------- /src/obj/Debug/net5.0/staticwebassets/VacunaAPI.StaticWebAssets.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /src/obj/Release/net5.0/EFCoreSqlServerNetTopologySuite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/EFCoreSqlServerNetTopologySuite.cs -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/AutoMapper.Extensions.Microsoft.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/AutoMapper.Extensions.Microsoft.DependencyInjection.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/AutoMapper.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Azure.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Azure.Core.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Azure.Storage.Blobs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Azure.Storage.Blobs.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Azure.Storage.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Azure.Storage.Common.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/BouncyCastle.Crypto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/BouncyCastle.Crypto.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Humanizer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Humanizer.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/MailKit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/MailKit.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Microsoft.AI.DependencyCollector.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Microsoft.AI.DependencyCollector.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Microsoft.AI.EventCounterCollector.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Microsoft.AI.EventCounterCollector.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Microsoft.AI.PerfCounterCollector.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Microsoft.AI.PerfCounterCollector.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Microsoft.AI.ServerTelemetryChannel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Microsoft.AI.ServerTelemetryChannel.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Microsoft.AI.WindowsServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Microsoft.AI.WindowsServer.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Microsoft.ApplicationInsights.AspNetCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Microsoft.ApplicationInsights.AspNetCore.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Microsoft.ApplicationInsights.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Microsoft.ApplicationInsights.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Microsoft.AspNetCore.Authentication.JwtBearer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Microsoft.AspNetCore.Authentication.JwtBearer.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Microsoft.AspNetCore.Cryptography.Internal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Microsoft.AspNetCore.Cryptography.Internal.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Microsoft.AspNetCore.Razor.Language.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Microsoft.AspNetCore.Razor.Language.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Microsoft.CodeAnalysis.CSharp.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Microsoft.CodeAnalysis.CSharp.Workspaces.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Microsoft.CodeAnalysis.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Microsoft.CodeAnalysis.Razor.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Microsoft.CodeAnalysis.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Microsoft.CodeAnalysis.Workspaces.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Microsoft.EntityFrameworkCore.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Microsoft.EntityFrameworkCore.Abstractions.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Microsoft.EntityFrameworkCore.Relational.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Microsoft.EntityFrameworkCore.Relational.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Microsoft.EntityFrameworkCore.SqlServer.NetTopologySuite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Microsoft.EntityFrameworkCore.SqlServer.NetTopologySuite.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Microsoft.EntityFrameworkCore.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Microsoft.EntityFrameworkCore.SqlServer.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Microsoft.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Microsoft.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Microsoft.Extensions.DiagnosticAdapter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Microsoft.Extensions.DiagnosticAdapter.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Microsoft.Extensions.Identity.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Microsoft.Extensions.Identity.Core.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Microsoft.Extensions.Identity.Stores.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Microsoft.Extensions.Identity.Stores.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Microsoft.Extensions.Logging.ApplicationInsights.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Microsoft.Extensions.Logging.ApplicationInsights.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Microsoft.Extensions.PlatformAbstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Microsoft.Extensions.PlatformAbstractions.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Microsoft.Identity.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Microsoft.Identity.Client.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Microsoft.IdentityModel.JsonWebTokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Microsoft.IdentityModel.JsonWebTokens.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Microsoft.IdentityModel.Protocols.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Microsoft.IdentityModel.Protocols.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Microsoft.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Microsoft.OpenApi.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Microsoft.WindowsAzure.Storage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Microsoft.WindowsAzure.Storage.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/MimeKit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/MimeKit.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/NetTopologySuite.IO.SqlServerBytes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/NetTopologySuite.IO.SqlServerBytes.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/NetTopologySuite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/NetTopologySuite.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Swashbuckle.AspNetCore.Swagger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Swashbuckle.AspNetCore.Swagger.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Swashbuckle.AspNetCore.SwaggerGen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Swashbuckle.AspNetCore.SwaggerGen.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/Swashbuckle.AspNetCore.SwaggerUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/Swashbuckle.AspNetCore.SwaggerUI.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/System.Composition.AttributedModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/System.Composition.AttributedModel.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/System.Composition.Convention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/System.Composition.Convention.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/System.Composition.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/System.Composition.Hosting.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/System.Composition.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/System.Composition.Runtime.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/System.Composition.TypedParts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/System.Composition.TypedParts.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/System.Diagnostics.PerformanceCounter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/System.Diagnostics.PerformanceCounter.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/System.Memory.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/System.Memory.Data.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/VacunaAPI.Views.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/VacunaAPI.Views.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/VacunaAPI.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/VacunaAPI.deps.json -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/VacunaAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/VacunaAPI.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/VacunaAPI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/VacunaAPI.exe -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/VacunaAPI.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/VacunaAPI.runtimeconfig.json -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/appsettings.Development.json -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/appsettings.json -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/cs/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/cs/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/cs/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/cs/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/de/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/de/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/de/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/de/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/de/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/de/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/dotnet-aspnet-codegenerator-design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/dotnet-aspnet-codegenerator-design.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/es/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/es/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/es/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/es/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/es/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/es/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/fr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/fr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/fr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/fr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/it/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/it/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/it/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/it/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/it/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/it/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/ja/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/ja/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/ja/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/ja/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/ko/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/ko/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/ko/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/ko/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/pl/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/pl/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/pl/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/pl/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/ru/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/ru/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/ru/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/ru/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/runtimes/win-arm/lib/net5.0/dotnet-aspnet-codegenerator-design.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/runtimes/win-arm/lib/net5.0/dotnet-aspnet-codegenerator-design.exe -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/runtimes/win-arm64/lib/net5.0/dotnet-aspnet-codegenerator-design.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/runtimes/win-arm64/lib/net5.0/dotnet-aspnet-codegenerator-design.exe -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/tr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/tr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/tr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/tr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/web.config -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/wwwroot/images/unnamed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/wwwroot/images/unnamed.png -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/VacunaAPI.Parameters.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/VacunaAPI.Parameters.xml -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PubTmp/VacunaAPI.SourceManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PubTmp/VacunaAPI.SourceManifest.xml -------------------------------------------------------------------------------- /src/obj/Release/net5.0/PublishOutputs.5190ffe746.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/PublishOutputs.5190ffe746.txt -------------------------------------------------------------------------------- /src/obj/Release/net5.0/Razor/Pages/ResetPassword.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/Razor/Pages/ResetPassword.cshtml.g.cs -------------------------------------------------------------------------------- /src/obj/Release/net5.0/Razor/Pages/_ValidationScriptsPartial.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/Razor/Pages/_ValidationScriptsPartial.cshtml.g.cs -------------------------------------------------------------------------------- /src/obj/Release/net5.0/VacunaAPI.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/VacunaAPI.AssemblyInfo.cs -------------------------------------------------------------------------------- /src/obj/Release/net5.0/VacunaAPI.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/VacunaAPI.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /src/obj/Release/net5.0/VacunaAPI.MvcApplicationPartsAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/VacunaAPI.MvcApplicationPartsAssemblyInfo.cs -------------------------------------------------------------------------------- /src/obj/Release/net5.0/VacunaAPI.RazorAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/VacunaAPI.RazorAssemblyInfo.cs -------------------------------------------------------------------------------- /src/obj/Release/net5.0/VacunaAPI.RazorTargetAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/VacunaAPI.RazorTargetAssemblyInfo.cs -------------------------------------------------------------------------------- /src/obj/Release/net5.0/VacunaAPI.Views.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/VacunaAPI.Views.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/VacunaAPI.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/obj/Release/net5.0/VacunaAPI.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/VacunaAPI.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /src/obj/Release/net5.0/VacunaAPI.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/VacunaAPI.deps.json -------------------------------------------------------------------------------- /src/obj/Release/net5.0/VacunaAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/VacunaAPI.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/apphost.exe -------------------------------------------------------------------------------- /src/obj/Release/net5.0/ref/VacunaAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/Release/net5.0/ref/VacunaAPI.dll -------------------------------------------------------------------------------- /src/obj/Release/net5.0/staticwebassets/VacunaAPI.StaticWebAssets.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/obj/VacunaAPI.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/VacunaAPI.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /src/obj/VacunaAPI.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/VacunaAPI.csproj.nuget.g.props -------------------------------------------------------------------------------- /src/obj/VacunaAPI.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/VacunaAPI.csproj.nuget.g.targets -------------------------------------------------------------------------------- /src/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/obj/project.assets.json -------------------------------------------------------------------------------- /src/wwwroot/images/unnamed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgermosen/Vacuna/HEAD/src/wwwroot/images/unnamed.png --------------------------------------------------------------------------------